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.

10 lines (9 loc) 308 B
import { AbstractCommand } from '../../classes/AbstractCommand'; export default class SecretKey extends AbstractCommand { static description: string; static examples: string[]; static flags: { len: import("@oclif/parser/lib/flags").IOptionFlag<number>; }; run(): Promise<void>; }