@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
7 lines (6 loc) • 329 B
TypeScript
/** biome-ignore-all lint/suspicious/noAssignInExpressions: Because why not? */
type ClassValue = ClassArray | ClassDictionary | string | number | bigint | null | boolean | undefined;
type ClassDictionary = Record<string, any>;
type ClassArray = ClassValue[];
declare function cl(...inputs: ClassValue[]): string;
export { cl };