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.
9 lines (8 loc) • 340 B
TypeScript
import { AbstractCommand } from '../classes/AbstractCommand';
export default class Build extends AbstractCommand {
static description: string;
run(): Promise<void>;
protected prepareDistDirectory(outDir: string): Promise<string>;
protected compileTypeScript(): Promise<void>;
protected copyTemplates(): Promise<void>;
}