9 lines
258 B
TypeScript
9 lines
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
|
||
|
}
|