knightrider/types/MessageCreate.d.ts
2025-01-18 01:27:58 +00:00

9 lines
No EOL
258 B
TypeScript

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
}