fix lint error

This commit is contained in:
Fernando Rojo 2020-10-05 18:45:43 +00:00 committed by GitHub
parent ea29f25b19
commit 2c3ac7af60

View File

@ -4,7 +4,7 @@ interface Config {
BASE: string;
VERSION: string;
WITH_CREDENTIALS: boolean;
TOKEN: string | () => Promise<string>;
TOKEN: string | (() => Promise<string>);
}
export const OpenAPI: Config = {