Skip to content

Commit 1bbebb6

Browse files
committed
Added more webhook funcs and $followChannel, bump versions
1 parent 6df0977 commit 1bbebb6

File tree

141 files changed

+774
-246
lines changed

Some content is hidden

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

141 files changed

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

dist/native/channel/channelWebhooks.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/channelWebhooks.js

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

dist/native/channel/channelWebhooks.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: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import { BaseChannel } from "discord.js";
2+
import { ArgType, NativeFunction } from "../../structures";
3+
declare const _default: NativeFunction<[{
4+
name: string;
5+
description: string;
6+
type: ArgType.Channel;
7+
rest: false;
8+
required: true;
9+
check: (i: BaseChannel) => boolean;
10+
}, {
11+
name: string;
12+
description: string;
13+
type: ArgType.Channel;
14+
rest: false;
15+
required: true;
16+
check: (i: BaseChannel) => boolean;
17+
}, {
18+
name: string;
19+
description: string;
20+
type: ArgType.String;
21+
rest: false;
22+
}], true>;
23+
export default _default;
24+
//# sourceMappingURL=followChannel.d.ts.map

dist/native/channel/followChannel.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/followChannel.js

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

dist/native/channel/followChannel.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 { ArgType, NativeFunction } from "../../structures";
2+
import { WebhookProperty } from "../../properties/webhook";
3+
declare const _default: NativeFunction<[{
4+
name: string;
5+
description: string;
6+
rest: false;
7+
type: ArgType.Guild;
8+
required: true;
9+
}, {
10+
name: string;
11+
description: string;
12+
rest: false;
13+
type: ArgType.Enum;
14+
enum: typeof WebhookProperty;
15+
}, {
16+
name: string;
17+
description: string;
18+
rest: false;
19+
type: ArgType.String;
20+
}], true>;
21+
export default _default;
22+
//# sourceMappingURL=guildWebhooks.d.ts.map

dist/native/guild/guildWebhooks.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)