UNPKG

@expressots/cli

Version:

Expressots CLI - modern, fast, lightweight nodejs web framework (@cli)

27 lines (26 loc) 716 B
import { CommandModule } from "yargs"; /** * Dev command module * @type {CommandModule<object, object>} * @returns The command module */ export declare const devCommand: CommandModule<object, object>; /** * Build command module * @type {CommandModule<object, object>} * @returns The command module */ export declare const buildCommand: CommandModule<object, object>; /** * Prod command module * @type {CommandModule<object, object>} * @returns The command module */ export declare const prodCommand: CommandModule<object, object>; /** * Helper function to run a command * @param command The command to run */ export declare const runCommand: ({ command, }: { command: string; }) => Promise<void>;