UNPKG

eslint-plugin-better-tailwindcss

Version:

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

11 lines 529 B
import type { Warning } from "../types/async.js"; import type { Context } from "../types/rule.js"; import type { AsyncContext } from "../utils/context.js"; export type UnknownClass = string; export type GetUnknownClasses = (ctx: AsyncContext, classes: string[]) => { unknownClasses: UnknownClass[]; warnings: (Warning | undefined)[]; }; export declare let getUnknownClasses: GetUnknownClasses; export declare function createGetUnknownClasses(ctx: Context): GetUnknownClasses; //# sourceMappingURL=unknown-classes.d.ts.map