@lambocreeper/mock-discord.js
Version:
Easily mock Discord.js for testing your bot's code.
10 lines (9 loc) • 320 B
TypeScript
import GuildChannelConfigOptions from "./GuildChannelConfigOptions";
interface TextChannelConfigOptions extends GuildChannelConfigOptions {
topic?: string;
nsfw?: boolean;
last_message_id?: string;
last_pin_timestamp?: number;
rate_limit_per_user?: number;
}
export default TextChannelConfigOptions;