-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
109 lines (108 loc) · 2.13 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
import { Client, Guild, GuildMember, IntegrationExpireBehaviors, Message, User } from 'discord.js';
export type starteropt = {
status?:string;
statusType?:string
}
export declare function starter(
token?:string,
options?: starteropt
): Promise<any>
export type loopopt = {
title?:string;
description?:string;
footer?:string;
color?:string;
thumbnail?:string;
}
export declare function loop(
message:Message,
args?:string[],
client:Client,
options?: loopopt
): Promise<any>
export type chatbotopt = {
color:string;
}
export declare function chabtot(
message:Message,
client:Client,
args?:string[],
options?: chatbotopt
): Promise<any>
export type automemeopt = {
timer:number
}
export declare function automeme(
message:Message,
client:Client,
args?:string[],
options?: automemeopt
): Promise<any>
export declare function sticker(
message:Message,
client:Client,
args?:string[]
)
export declare function spotify(
message:Message,
client:Client,
args?:string[]
)
export declare function iphone(
message:Message,
client:Client,
args?:string[]
)
export declare function findtheemoji(
message:Message,
client:Client,
args?:string[]
)
export declare function audit(
message:Message,
client:Client,
args?:string[]
)
export declare function afk(
message:Message,
client:Client,
args?:string[]
)
export declare function advancedav(
message:Message,
client:Client,
args?:string[]
)
export declare function snipe(
message:Message,
client:Client,
args?:string[]
)
export declare function autoplay(
message:Message
)
export type lavaopt = {
host?:string;
port?:number;
password?:string;
identifier?:string;
retryAmount?:number;
retryDelay?:number;
secure?:boolean;
spotifyid?:string;
spotifysecret?:string
}
export declare function lavalink(
option:lavaopt,
client?:Client
)
export declare function play(
message:Message
)
export declare function stop(
message:Message
)
export declare function eval(
message:Message,
args?:string[]
)