@megaorm/cli
Version:
This package allows you to communicate with MegaORM via commands directly from the command line interface (CLI).
14 lines (13 loc) • 315 B
TypeScript
import { MegaCommand } from '../MegaCommand';
/**
* Command that outputs the current version of the application.
*
*
* @extends MegaCommand
*/
export declare class VersionCommand extends MegaCommand {
/**
* Logs the current version of the application to the console.
*/
static exec(): any;
}