UNPKG

282 BTypeScriptView Raw
1import { Command, RootArguments } from "../cli/command";
2export declare function writeJSON(path: string, data: any): Promise<void>;
3export interface InitArguments extends RootArguments {
4 force: boolean;
5 path?: string;
6}
7export declare const initCmd: Command<InitArguments>;