| 75 | ---------------------------------- */ |
| 76 | |
| 77 | export interface CX { |
| 78 | (...inputs: ClassValue[]): string; |
| 79 | } |
| 80 | |
| 81 | export type CXOptions = Parameters<CX>; |
| 82 | export type CXReturn = ReturnType<CX>; |
nothing calls this directly
no outgoing calls
no test coverage detected