UNPKG

zents-cli

Version:

ZenTS is a Node.js & TypeScript MVC-Framework for building rich web applications, released as free and open-source software under the MIT License. It is designed for building web applications with modern tools and design patterns.

17 lines (16 loc) 551 B
import { AbstractCommand } from '../classes/AbstractCommand'; export default class Create extends AbstractCommand { static aliases: string[]; static args: { name: string; required: boolean; }[]; static description: string; static examples: string[]; static flags: { clean: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>; dev: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>; help: import("@oclif/parser/lib/flags").IBooleanFlag<void>; }; run(): Promise<void>; }