UNPKG

vike

Version:

The Framework *You* Control - Next.js & Nuxt alternative for unprecedented flexibility and dependability.

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