create-somod
Version:
SOMOD Project creator
16 lines (15 loc) • 582 B
TypeScript
import { Command, CommonOptions } from "nodejs-cli-runner";
declare type CreateSomodOptions = CommonOptions & {
ui: boolean;
serverless: boolean;
version: string;
templateVersion: string;
git: boolean;
prettier: boolean;
eslint: boolean;
files: boolean;
npmPrompt: boolean;
};
export declare const decorateCommand: (command: Command) => void;
export declare const CreateSomodAction: (modName: string, { verbose, ui, serverless, version, templateVersion, git, prettier, eslint, files, npmPrompt }: CreateSomodOptions) => Promise<void>;
export {};