Initial commit for the js version

This commit is contained in:
2020-12-22 15:17:25 +01:00
commit 94d26fcafc
182 changed files with 2524 additions and 0 deletions

13
dist/core/OpenAPI.d.ts vendored Normal file
View File

@@ -0,0 +1,13 @@
declare type Resolver<T> = () => Promise<T>;
declare type Headers = Record<string, string>;
declare type Config = {
BASE: string;
VERSION: string;
WITH_CREDENTIALS: boolean;
TOKEN?: string | Resolver<string>;
USERNAME?: string | Resolver<string>;
PASSWORD?: string | Resolver<string>;
HEADERS?: Headers | Resolver<Headers>;
};
export declare const OpenAPI: Config;
export {};