UNPKG

react-gnome

Version:

## Getting Started

12 lines (11 loc) 499 B
import { BuildProgram } from "./programs/build-program"; import { BundleProgram } from "./programs/bundle-program"; import { InitProgram } from "./programs/init-program"; import { StartProgram } from "./programs/start-program"; /** * Invokes the CLI program. * * if `command` or `args` are not provided, `process.argv` will be used. */ export declare function start(command?: string, args?: Record<string, any>): Promise<void>; export { BuildProgram, BundleProgram, InitProgram, StartProgram };