Add search() stubs for docs

This commit is contained in:
Amish Shah
2016-12-30 18:59:34 +00:00
parent 4c8e4fde6f
commit 023ac0a7fe
3 changed files with 3 additions and 0 deletions

View File

@@ -53,6 +53,7 @@ class DMChannel extends Channel {
awaitMessages() { return; }
bulkDelete() { return; }
_cacheMessage() { return; }
search() { return; }
}
TextBasedChannel.applyToClass(DMChannel, true);

View File

@@ -137,6 +137,7 @@ class GroupDMChannel extends Channel {
awaitMessages() { return; }
bulkDelete() { return; }
_cacheMessage() { return; }
search() { return; }
}
TextBasedChannel.applyToClass(GroupDMChannel, true);

View File

@@ -89,6 +89,7 @@ class TextChannel extends GuildChannel {
awaitMessages() { return; }
bulkDelete() { return; }
_cacheMessage() { return; }
search() { return; }
}
TextBasedChannel.applyToClass(TextChannel, true);