@ntegral/lulu
Version:
Lulu Print API Client
14 lines (11 loc) • 388 B
text/typescript
export type LuluConfigEnvironment = 'development' | 'production';
export interface LuluApiKeyConfigOption {
token: string;
environment: LuluConfigEnvironment
};
export interface LuluApiCredConfigOption {
client_key: string;
client_secret: string;
environment:LuluConfigEnvironment;
}
export type LuluConfigOptions = LuluApiKeyConfigOption | LuluApiCredConfigOption;