forked from matthew1232/discord-webhook-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
85 lines (80 loc) · 1.78 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
export type WebhookOptions = {
url: string
};
export class Webhook {
constructor(url: string);
setUsername(username: string): void;
setAvatar(avatar: string): void;
sendFile(filePath: string): Promise<void>;
send(message: MessageBuilder | string): Promise<void>;
info(
title: string,
fieldName?: string,
fieldValue?: string,
inline?: boolean
): Promise<void>;
success(
title: string,
fieldName?: string,
fieldValue?: string,
inline?: boolean
): Promise<void>;
warning(
title: string,
fieldName?: string,
fieldValue?: string,
inline?: boolean
): Promise<void>;
error(
title: string,
fieldName?: string,
fieldValue?: string,
inline?: boolean
): Promise<void>;
}
export type WebhookField = {
name: string;
value: string;
inline?: boolean;
};
export type WebhookEmbed = {
author?: {
name?: string;
url?: string;
icon_url?: string;
};
title?: string;
url?: string;
thumbnail?: {
url?: string;
};
image?: {
url?: string;
};
timestamp?: Date;
color?: number;
description?: string;
fields: WebhookField[];
footer?: {
text: string;
icon_url?: string;
};
};
export type WebhookPayload = {
embeds: WebhookEmbed[];
};
export class MessageBuilder {
constructor();
getJSON(): WebhookPayload;
setText(text: string): this;
setAuthor(author?: string, authorImage?: string, authorUrl?: string): this;
setTitle(title: string): this;
setUrl(url: string): this;
setThumbnail(thumbnailUrl: string): this;
setImage(image: string): this;
setTimestamp(): this;
setColor(color: number): this;
setDescription(description: string): this;
addField(fieldName: string, fieldValue: string, inline?: boolean): this;
setFooter(footer: string, footerImage?: string): this;
}