UNPKG

eslint-plugin-better-tailwindcss

Version:

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

15 lines 501 B
import type { Async, Warning } from "../types/async.js"; export type Prefix = string; export type Suffix = string; export interface GetPrefixRequest { configPath: string | undefined; cwd: string; tsconfigPath: string | undefined; } export interface GetPrefixResponse { prefix: Prefix; suffix: Suffix; warnings: (Warning | undefined)[]; } export declare const getPrefix: import("synckit").Syncify<Async<GetPrefixRequest, GetPrefixResponse>>; //# sourceMappingURL=prefix.d.ts.map