svelte-standalone
Version:
Transform Svelte components in standalone scripts!
11 lines (10 loc) • 351 B
TypeScript
export declare const buildStrategy: {
readonly name: "components";
readonly message: "Which components should be builded?";
readonly choices: {
name: string;
value: string;
checked: boolean;
}[];
};
export declare function build(prod: boolean, all: boolean, stripRuntime: boolean, mode: string): Promise<void>;