knightrider/types/MessageCreate.d.ts

9 lines
258 B
TypeScript
Raw Normal View History

2025-01-18 01:27:58 +00:00
import {GuildAttributes} from '../src/database/schemas/Guild';
import {UserAttributes} from '../src/database/schemas/User';
export interface MessageCreateOptions {
hasPrefix: boolean,
msgCmds: string[],
guild: GuildAttributes,
user: UserAttributes
}