UNPKG

@maizzle/framework

Version:

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

13 lines 492 B
import { MaizzleConfig } from "../types/config.js"; //#region src/composables/defineConfig.d.ts /** * Define Maizzle config. * * In maizzle.config.ts: typed identity function, returns the config as-is * In Vue SFC `<script setup>`: merges with the global config and provides * the result to child components via `useConfig()` */ declare function defineConfig(data?: Partial<MaizzleConfig>): MaizzleConfig; //#endregion export { defineConfig }; //# sourceMappingURL=defineConfig.d.ts.map