UNPKG

279 BTypeScriptView Raw
1import { Console } from './Console';
2import { ConsoleOptions } from './ConsoleOptions';
3export declare class Cluster<T extends ConsoleOptions> extends Console<T> {
4 constructor(options: T, filepath: string, ...args: string[]);
5 spawn(filepath: string): Promise<boolean>;
6}