music-bot/@types/Shard.d.ts
Navy.gif 2a3a034e59 Various fixes and improvements
- Added debug statements
- Added option to limit commands to specific roles
- Handle process exiting explicitly
2024-04-13 10:37:10 +03:00

12 lines
270 B
TypeScript

export type ShardOptions = {
file: string,
token?: string,
execArgv?: string[],
args?: string[];
respawn?: boolean,
clientOptions: ClientOptions
totalShards: number,
debug?: boolean
}
export type ShardMethod = 'eval' | 'fetchClientValue'