seyfert 2.1.1-dev-11520718826.0 → 2.1.1-dev-11527301551.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/client/base.d.ts +11 -10
- package/package.json +1 -1
package/lib/client/base.d.ts
CHANGED
|
@@ -68,7 +68,7 @@ export declare class BaseClient {
|
|
|
68
68
|
getRC<T extends InternalRuntimeConfigHTTP | InternalRuntimeConfig = InternalRuntimeConfigHTTP | InternalRuntimeConfig>(): Promise<{
|
|
69
69
|
debug: boolean;
|
|
70
70
|
} & Omit<T, "debug" | "locations"> & {
|
|
71
|
-
locations:
|
|
71
|
+
locations: RCLocations;
|
|
72
72
|
}>;
|
|
73
73
|
}
|
|
74
74
|
export interface BaseClientOptions {
|
|
@@ -121,17 +121,18 @@ export interface StartOptions {
|
|
|
121
121
|
};
|
|
122
122
|
token: string;
|
|
123
123
|
}
|
|
124
|
+
interface RCLocations extends ExtendedRCLocations {
|
|
125
|
+
base: string;
|
|
126
|
+
output: string;
|
|
127
|
+
commands?: string;
|
|
128
|
+
langs?: string;
|
|
129
|
+
templates?: string;
|
|
130
|
+
events?: string;
|
|
131
|
+
components?: string;
|
|
132
|
+
}
|
|
124
133
|
interface RC extends ExtendedRC {
|
|
125
134
|
debug?: boolean;
|
|
126
|
-
locations:
|
|
127
|
-
base: string;
|
|
128
|
-
output: string;
|
|
129
|
-
commands?: string;
|
|
130
|
-
langs?: string;
|
|
131
|
-
templates?: string;
|
|
132
|
-
events?: string;
|
|
133
|
-
components?: string;
|
|
134
|
-
} & ExtendedRCLocations;
|
|
135
|
+
locations: RCLocations;
|
|
135
136
|
token: string;
|
|
136
137
|
intents?: number;
|
|
137
138
|
applicationId?: string;
|