eslint-plugin-better-tailwindcss
Version:
auto-wraps tailwind classes after a certain print width or class count into multiple lines to improve readability.
40 lines • 929 B
TypeScript
import { MatcherType, SelectorKind } from "../../types/rule.js";
export declare const CVA_STRINGS: {
kind: SelectorKind.Callee;
match: {
type: MatcherType.String;
}[];
name: string;
};
export declare const CVA_VARIANT_VALUES: {
kind: SelectorKind.Callee;
match: {
path: string;
type: MatcherType.ObjectValue;
}[];
name: string;
};
export declare const CVA_COMPOUND_VARIANTS_CLASS: {
kind: SelectorKind.Callee;
match: {
path: string;
type: MatcherType.ObjectValue;
}[];
name: string;
};
/** @see https://github.com/joe-bell/cva */
export declare const CVA: ({
kind: SelectorKind.Callee;
match: {
type: MatcherType.String;
}[];
name: string;
} | {
kind: SelectorKind.Callee;
match: {
path: string;
type: MatcherType.ObjectValue;
}[];
name: string;
})[];
//# sourceMappingURL=cva.d.ts.map