UNPKG

@maizzle/framework

Version:

Maizzle is a framework that helps you quickly build HTML emails with Tailwind CSS.

13 lines 400 B
//#region src/composables/useDoctype.d.ts /** * Set the doctype for the current email template. * * Usage in SFC <script setup>: * ```ts * useDoctype('<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">') * ``` */ declare function useDoctype(doctype: string): void; //#endregion export { useDoctype }; //# sourceMappingURL=useDoctype.d.ts.map