Skip to content

Commit 4d4bbda

Browse files
committed
Added more stage instance support
1 parent d3a4d5d commit 4d4bbda

File tree

152 files changed

+944
-261
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

152 files changed

+944
-261
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
import { BaseChannel, StageInstancePrivacyLevel } from "discord.js";
2+
import { ArgType, NativeFunction } from "../../structures";
3+
declare const _default: NativeFunction<[{
4+
name: string;
5+
description: string;
6+
rest: false;
7+
required: true;
8+
type: ArgType.Channel;
9+
check: (i: BaseChannel) => boolean;
10+
}, {
11+
name: string;
12+
description: string;
13+
rest: false;
14+
required: true;
15+
type: ArgType.String;
16+
}, {
17+
name: string;
18+
description: string;
19+
rest: false;
20+
type: ArgType.Enum;
21+
enum: typeof StageInstancePrivacyLevel;
22+
}, {
23+
name: string;
24+
description: string;
25+
rest: false;
26+
type: ArgType.Boolean;
27+
}, {
28+
name: string;
29+
description: string;
30+
rest: false;
31+
type: ArgType.String;
32+
}], true>;
33+
export default _default;
34+
//# sourceMappingURL=createStageInstance.d.ts.map

dist/native/channel/createStageInstance.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/native/channel/createStageInstance.js

Lines changed: 57 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/native/channel/createStageInstance.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import { ArgType, NativeFunction } from "../../structures";
2+
declare const _default: NativeFunction<[{
3+
name: string;
4+
description: string;
5+
rest: false;
6+
required: true;
7+
type: ArgType.StageInstance;
8+
}], true>;
9+
export default _default;
10+
//# sourceMappingURL=deleteStageInstance.d.ts.map

dist/native/channel/deleteStageInstance.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/native/channel/deleteStageInstance.js

Lines changed: 23 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/native/channel/deleteStageInstance.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import { StageInstancePrivacyLevel } from "discord.js";
2+
import { ArgType, NativeFunction } from "../../structures";
3+
declare const _default: NativeFunction<[{
4+
name: string;
5+
description: string;
6+
rest: false;
7+
required: true;
8+
type: ArgType.StageInstance;
9+
}, {
10+
name: string;
11+
description: string;
12+
rest: false;
13+
type: ArgType.String;
14+
}, {
15+
name: string;
16+
description: string;
17+
rest: false;
18+
type: ArgType.Enum;
19+
enum: typeof StageInstancePrivacyLevel;
20+
}], true>;
21+
export default _default;
22+
//# sourceMappingURL=editStageInstance.d.ts.map

dist/native/channel/editStageInstance.d.ts.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)