UNPKG

eslint-plugin-better-tailwindcss

Version:

auto-wraps tailwind classes after a certain print width or class count into multiple lines to improve readability.

12 lines 405 B
import type { Context } from "../types/rule.js"; interface ClassParts { base: string; important: [boolean, boolean]; negative: boolean; prefix: string; separator: string; variants: string[] | undefined; } export declare function buildClass(ctx: Context, { base, important, negative, prefix, separator, variants }: ClassParts): string; export {}; //# sourceMappingURL=class.d.ts.map