@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.
22 lines • 618 B
TypeScript
/**
* Options for the admin command
*/
export interface AdminOptions {
/** Port to run admin server on (default: 3000) */
port?: number | string;
/** Automatically open browser (default: true) */
open?: boolean;
/** Disable auto-open browser */
noOpen?: boolean;
/** Path to projects file */
projects?: string;
/** Path to config file */
config?: string;
/** Show help */
help?: boolean;
}
/**
* Admin command - starts the admin server for managing projects
*/
export declare function admin(options?: AdminOptions): Promise<void>;
//# sourceMappingURL=admin.d.ts.map