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.

15 lines (14 loc) 415 B
import { AbstractCommand } from '../../classes/AbstractCommand'; export default class Entity extends AbstractCommand { static description: string; static examples: string[]; static args: { name: string; description: string; required: boolean; }[]; static flags: { force: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>; }; run(): Promise<void>; }