UNPKG

459 BTypeScriptView Raw
1export interface IBearerConfig {
2 integrationHost?: string;
3 loadingComponent?: string;
4 secured?: boolean;
5}
6export default class BearerConfig {
7 integrationHost: string;
8 authorizationHost: string;
9 loadingComponent: string;
10 postRobotLogLevel: 'debug' | 'info' | 'warn' | 'error';
11 secured: boolean;
12 readonly clientId: string;
13 constructor(options?: IBearerConfig);
14 update(options: IBearerConfig): void;
15}