3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-11 04:45:02 +00:00

Add !context utility command

This commit is contained in:
Dragory 2019-11-30 19:54:44 +02:00
parent 7df1bb91d2
commit 64e1fbc10c
2 changed files with 29 additions and 0 deletions

View file

@ -947,6 +947,7 @@ export function verboseChannelMention(channel: GuildChannel): string {
}
export function messageLink(message: Message): string;
export function messageLink(guildId: string, channelId: string, messageId: string): string;
export function messageLink(guildIdOrMessage: string | Message | null, channelId?: string, messageId?: string): string {
let guildId;
if (guildIdOrMessage == null) {