mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-11 21:23:24 +01:00
14 lines
349 B
TypeScript
14 lines
349 B
TypeScript
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;
|