@blitzjs/installer
Version:
Package installation for the Blitz CLI
13 lines (12 loc) • 538 B
TypeScript
import { Executor, executorArgument, ExecutorConfig } from './executor';
export interface Config extends ExecutorConfig {
targetDirectory?: executorArgument<string>;
templatePath: executorArgument<string>;
templateValues: executorArgument<{
[key: string]: string;
}>;
destinationPathPrompt?: executorArgument<string>;
}
export declare function isNewFileExecutor(executor: ExecutorConfig): executor is Config;
export declare const type = "new-file";
export declare const Commit: Executor['Commit'];