UNPKG

@stacksjs/stx

Version:

A performant UI Framework. Powered by Bun.

15 lines 332 B
/** * Preview the built story site */ export declare function previewCommand(options?: PreviewOptions): Promise<void>; /** * Run preview command (alias) */ export declare const preview: typeof previewCommand; /** * Options for the preview command */ export declare interface PreviewOptions { port?: number open?: boolean }