@slidev/types
Version:
Shared types declarations for Slidev
21 lines (20 loc) • 937 B
JavaScript
//#region src/setups.ts
function defineSetup(fn) {
return fn;
}
const defineShikiSetup = defineSetup;
const defineUnoSetup = defineSetup;
const defineMonacoSetup = defineSetup;
const defineAppSetup = defineSetup;
const defineRootSetup = defineSetup;
const defineRoutesSetup = defineSetup;
const defineMermaidSetup = defineSetup;
const defineKatexSetup = defineSetup;
const defineShortcutsSetup = defineSetup;
const defineTransformersSetup = defineSetup;
const definePreparserSetup = defineSetup;
const defineVitePluginsSetup = defineSetup;
const defineCodeRunnersSetup = defineSetup;
const defineContextMenuSetup = defineSetup;
//#endregion
export { defineAppSetup, defineCodeRunnersSetup, defineContextMenuSetup, defineKatexSetup, defineMermaidSetup, defineMonacoSetup, definePreparserSetup, defineRootSetup, defineRoutesSetup, defineShikiSetup, defineShortcutsSetup, defineTransformersSetup, defineUnoSetup, defineVitePluginsSetup };