UNPKG

@ntegral/lulu

Version:
14 lines (11 loc) 388 B
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;