@maizzle/framework
Version:
Maizzle is a framework that helps you quickly build HTML emails with Tailwind CSS.
14 lines (13 loc) • 485 B
TypeScript
import { Plugin } from "vite";
//#region src/render/plugins/codeBlockExtract.d.ts
/**
* Vite plugin that extracts raw slot content from <CodeBlock> tags
* and passes it as a :code prop before Vue compiles the template.
*
* This lets users write HTML naturally inside CodeBlock slots without
* Vue attempting to compile it as template syntax.
*/
declare function codeBlockExtract(): Plugin;
//#endregion
export { codeBlockExtract };
//# sourceMappingURL=codeBlockExtract.d.ts.map