From 2c3ac7af6091dba60ee1076ca87afda41bd593f8 Mon Sep 17 00:00:00 2001 From: Fernando Rojo Date: Mon, 5 Oct 2020 18:45:43 +0000 Subject: [PATCH] fix lint error --- src/templates/core/OpenAPI.hbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/templates/core/OpenAPI.hbs b/src/templates/core/OpenAPI.hbs index 72fecc8c..aa32b24d 100644 --- a/src/templates/core/OpenAPI.hbs +++ b/src/templates/core/OpenAPI.hbs @@ -4,7 +4,7 @@ interface Config { BASE: string; VERSION: string; WITH_CREDENTIALS: boolean; - TOKEN: string | () => Promise; + TOKEN: string | (() => Promise); } export const OpenAPI: Config = {