svelte-standalone
Version:
Transform Svelte components in standalone scripts!
19 lines (18 loc) • 543 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({ production: prod, all, injectAssets, stripRuntime, mode, source: inputDir, target: outputDir }: {
production: boolean;
all: boolean;
injectAssets: boolean;
stripRuntime: boolean;
mode: string;
source: string;
target: string;
}): Promise<void>;