UNPKG

vike

Version:

(Replaces Next.js/Nuxt) 🔨 Composable framework to build advanced applications with flexibility and stability.

11 lines (10 loc) • 287 B
export { parseCli }; export type { Command }; export type { CliOptions }; import './assertEnvCli.js'; type CliOptions = Record<string, unknown>; type Command = 'dev' | 'build' | 'preview' | 'prerender'; declare function parseCli(): { command: Command; cliOptions: CliOptions; };