summary refs log tree commit diff
path: root/dist/Config.d.ts
blob: f796ab08c363986c680957d4172d2553d9073486 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import "missing-native-js-functions";
declare const _default: {
    init: (opts?: DefaultOptions) => Promise<void>;
    getAll: () => DefaultOptions;
    setAll: (val: any) => any;
};
export default _default;
export interface DefaultOptions {
    api: any;
    gateway: any;
    voice: any;
}
export declare const DefaultOptions: DefaultOptions;