persona-community-5/.pnpm-store/v3/files/cc/7166170bc9757cd62a41a207d9d028bc64d1f3934b2dda3e240691f2896666b0b41528364bd64e095f660701c31843676d050774725a12d7f936c805ee9872
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

7 lines
278 B
Plaintext

export type ClassValue = ClassArray | ClassDictionary | string | number | bigint | null | boolean | undefined;
export type ClassDictionary = Record<string, any>;
export type ClassArray = ClassValue[];
export function clsx(...inputs: ClassValue[]): string;
export default clsx;