UNPKG

@quasarbright/projection

Version:

A static site generator that creates a beautiful, interactive gallery to showcase your coding projects. Features search, filtering, tags, responsive design, and an admin UI.

20 lines 548 B
/** * Options for the dev command */ export interface DevOptions { /** Path to custom config file */ config?: string; /** Custom output directory */ output?: string; /** Port for the dev server (default: 8080) */ port?: number; /** Don't open browser automatically */ noOpen?: boolean; /** Show help */ help?: boolean; } /** * Dev command - starts development server with file watching and live reload */ export declare function dev(options?: DevOptions): Promise<void>; //# sourceMappingURL=dev.d.ts.map