music-bot/@types/Shard.d.ts

12 lines
270 B
TypeScript
Raw Permalink Normal View History

2024-03-24 19:56:03 +01:00
export type ShardOptions = {
file: string,
token?: string,
execArgv?: string[],
args?: string[];
respawn?: boolean,
clientOptions: ClientOptions
totalShards: number,
debug?: boolean
2024-03-24 19:56:03 +01:00
}
export type ShardMethod = 'eval' | 'fetchClientValue'