@bixi/auth
Version:
11 lines (10 loc) • 390 B
TypeScript
import { BixiAuthConfig } from './config.type';
export declare class BixiConfigService {
private config;
constructor(defaultConfig?: BixiAuthConfig);
get(key?: string): BixiAuthConfig;
merge<R>(...defaultValues: R[]): R;
attach<R>(componentThis: any, defaultValues: R): void;
attachKey(componentThis: any, key: string): void;
set(value: BixiAuthConfig): void;
}