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.

18 lines 494 B
/** * Options for the serve command */ export interface ServeOptions { /** Port to serve on (default: 8080) */ port?: number; /** Open browser automatically */ open?: boolean; /** Directory to serve (default: dist) */ dir?: string; /** Show help */ help?: boolean; } /** * Serve command - serves the generated dist directory with a local HTTP server */ export declare function serve(options?: ServeOptions): Promise<void>; //# sourceMappingURL=serve.d.ts.map