music-bot/@types/Shard.d.ts
2024-03-24 20:56:03 +02:00

11 lines
249 B
TypeScript

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