UNPKG

@stacksjs/stx

Version:

A performant UI Framework. Powered by Bun.

14 lines 298 B
/** * Build static story site */ export declare function buildCommand(options?: BuildOptions): Promise<void>; /** * Run build command (alias) */ export declare const build: typeof buildCommand; /** * Options for the build command */ export declare interface BuildOptions { outDir?: string }