2 files changed, 6 insertions, 6 deletions
diff --git a/dist/Config.d.ts b/dist/Config.d.ts
index f796ab08..2ab792f5 100644
--- a/dist/Config.d.ts
+++ b/dist/Config.d.ts
@@ -6,8 +6,8 @@ declare const _default: {
};
export default _default;
export interface DefaultOptions {
- api: any;
- gateway: any;
- voice: any;
+ api?: any;
+ gateway?: any;
+ voice?: any;
}
export declare const DefaultOptions: DefaultOptions;
diff --git a/src/Config.ts b/src/Config.ts
index 0d06f101..b22e88e0 100644
--- a/src/Config.ts
+++ b/src/Config.ts
@@ -18,9 +18,9 @@ export default {
};
export interface DefaultOptions {
- api: any;
- gateway: any;
- voice: any;
+ api?: any;
+ gateway?: any;
+ voice?: any;
}
export const DefaultOptions: DefaultOptions = {
|