- Removing domain

This commit is contained in:
Ferdi Koomen 2020-12-16 20:14:45 +01:00
parent da6efab054
commit a005cc352c

View File

@ -10,7 +10,6 @@ type Config = {
TOKEN?: string | Resolver<string>;
USERNAME?: string | Resolver<string>;
PASSWORD?: string | Resolver<string>;
DOMAIN?: string | Resolver<string>;
HEADERS?: Headers | Resolver<Headers>;
}
@ -21,6 +20,5 @@ export const OpenAPI: Config = {
TOKEN: undefined,
USERNAME: undefined,
PASSWORD: undefined,
DOMAIN: undefined,
HEADERS: undefined,
};