From 7cf7b1e4e79096870ca8df9b66a8b39c422b3393 Mon Sep 17 00:00:00 2001 From: Matt Mulligan Date: Mon, 20 Jun 2022 22:42:58 -0400 Subject: [PATCH] Updated config.d.ts to include apiKey Signed-off-by: Matt Mulligan --- plugins/stack-overflow-backend/config.d.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/plugins/stack-overflow-backend/config.d.ts b/plugins/stack-overflow-backend/config.d.ts index 7e7211ca33..3ce37f3396 100644 --- a/plugins/stack-overflow-backend/config.d.ts +++ b/plugins/stack-overflow-backend/config.d.ts @@ -24,5 +24,11 @@ export interface Config { * @visibility backend */ baseUrl: string; + + /** + * The api key to authenticate to Stack Overflow API + * @visibility backend + */ + apiKey: string; }; }