mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
17 lines
278 B
TypeScript
17 lines
278 B
TypeScript
type ClassValue =
|
|
| string
|
|
| number
|
|
| ClassDictionary
|
|
| ClassArray
|
|
| undefined
|
|
| null
|
|
| boolean;
|
|
|
|
interface ClassDictionary {
|
|
[id: string]: any;
|
|
}
|
|
|
|
interface ClassArray extends Array<ClassValue> {}
|
|
|
|
export type classNames = (...classes: ClassValue[]) => string;
|