12 lines
270 B
TypeScript
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'
|