svelte-standalone
Version:
Transform Svelte components in standalone scripts!
23 lines (22 loc) • 865 B
TypeScript
declare const TYPE_TO_ROUTE: {
readonly autoEmbedOnBody: "route-auto-start";
readonly autoEmbedWithTarget: "route-with-target";
readonly autoEmbedMultiple: "route-with-class";
readonly embed: "route-callable";
readonly embedMultiple: "route-multiple";
};
declare const TYPE_TO_STORY: {
readonly autoEmbedOnBody: "story-no-config";
readonly autoEmbedWithTarget: "story-no-config";
readonly autoEmbedMultiple: "story-no-config";
readonly embed: "story-with-config";
readonly embedMultiple: "story-with-config";
};
declare const TYPE_TO_TYPESCRIPT: {
readonly autoEmbedOnBody: "types-auto";
readonly autoEmbedWithTarget: "types-auto";
readonly autoEmbedMultiple: "types-auto";
readonly embed: "types";
readonly embedMultiple: "types-multiple";
};
export { TYPE_TO_ROUTE, TYPE_TO_TYPESCRIPT, TYPE_TO_STORY };