@maizzle/framework
Version:
Maizzle is a framework that helps you quickly build HTML emails with Tailwind CSS.
12 lines (11 loc) • 481 B
TypeScript
import { Plugin } from "postcss";
//#region src/plugins/postcss/removeDeclarations.d.ts
type RemoveValue = '*' | string | string[] | Record<string, string>;
interface RemoveDeclarationsOptions {
remove: Record<string, RemoveValue>;
}
declare const _default: (options: RemoveDeclarationsOptions) => Plugin;
declare const postcss = true;
//#endregion
export { RemoveDeclarationsOptions, RemoveValue, _default as default, postcss };
//# sourceMappingURL=removeDeclarations.d.ts.map