@maizzle/framework
Version:
Maizzle is a framework that helps you quickly build HTML emails with Tailwind CSS.
14 lines (13 loc) • 479 B
TypeScript
import { Plugin } from "vite";
//#region src/render/plugins/rawExtract.d.ts
/**
* Vite plugin that extracts raw slot content from <Raw> tags
* and passes it as a :content prop before Vue compiles the template.
*
* Lets users write content (including `{{ }}` interpolation syntax used
* by ESPs / Handlebars / Liquid) inside <Raw> without Vue parsing it.
*/
declare function rawExtract(): Plugin;
//#endregion
export { rawExtract };
//# sourceMappingURL=rawExtract.d.ts.map