🐛 make default options optional
This commit is contained in:
parent
996878cbe3
commit
7e3d6d1d9d
6
dist/Config.d.ts
vendored
6
dist/Config.d.ts
vendored
@ -6,8 +6,8 @@ declare const _default: {
|
|||||||
};
|
};
|
||||||
export default _default;
|
export default _default;
|
||||||
export interface DefaultOptions {
|
export interface DefaultOptions {
|
||||||
api: any;
|
api?: any;
|
||||||
gateway: any;
|
gateway?: any;
|
||||||
voice: any;
|
voice?: any;
|
||||||
}
|
}
|
||||||
export declare const DefaultOptions: DefaultOptions;
|
export declare const DefaultOptions: DefaultOptions;
|
||||||
|
@ -18,9 +18,9 @@ export default {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export interface DefaultOptions {
|
export interface DefaultOptions {
|
||||||
api: any;
|
api?: any;
|
||||||
gateway: any;
|
gateway?: any;
|
||||||
voice: any;
|
voice?: any;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const DefaultOptions: DefaultOptions = {
|
export const DefaultOptions: DefaultOptions = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user