eslint-plugin-better-tailwindcss
Version:
auto-wraps tailwind classes after a certain print width or class count into multiple lines to improve readability.
16 lines • 506 B
TypeScript
import type { Warning } from "../utils/utils.js";
export interface GetConfigRequest {
configPath: string | undefined;
cwd: string;
}
export interface GetConfigResponse {
path: string;
warning: ConfigWarning | undefined;
}
type ConfigWarning = Omit<Warning, "url"> & Partial<Pick<Warning, "url">>;
export declare const getTailwindConfigPath: ({ configPath, cwd }: {
configPath: string | undefined;
cwd: string;
}) => GetConfigResponse;
export {};
//# sourceMappingURL=config.d.ts.map