9 lines
221 B
TypeScript
9 lines
221 B
TypeScript
import type Context from '../context';
|
|
interface InitArgs {
|
|
_: string[];
|
|
install?: boolean;
|
|
clone?: boolean;
|
|
}
|
|
declare function initConsole(this: Context, args: InitArgs): Promise<void>;
|
|
export = initConsole;
|