1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-09-29 16:30:59 -04:00
Daggerbot-TS/src/typings/interfaces.d.ts

26 lines
488 B
TypeScript
Raw Normal View History

interface formatTimeOpt {
longNames: boolean,
commas: boolean
}
interface createTableOpt {
columnAlign: any,
columnSeparator: any,
columnEmptyChar: any
}
interface punOpt {
time?: string,
reason?: string,
interaction?: any
}
interface Punishment {
id: number;
type: string;
member: string;
moderator: string;
expired?: boolean;
time?: number;
reason?: string;
endTime?: number;
cancels?: number;
duration?: number;
}