UNPKG

eslint-plugin-better-tailwindcss

Version:

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

14 lines 547 B
import type { Async, Warning } from "../types/async.js"; export type ClassOrder = [className: string, order: bigint | null][]; export interface GetClassOrderRequest { classes: string[]; configPath: string | undefined; cwd: string; tsconfigPath: string | undefined; } export type GetClassOrderResponse = { classOrder: ClassOrder; warnings: (Warning | undefined)[]; }; export declare const getClassOrder: import("synckit").Syncify<Async<GetClassOrderRequest, GetClassOrderResponse>>; //# sourceMappingURL=class-order.d.ts.map