UNPKG

@antdv/pro-utils

Version:

@antdv/pro-utils

9 lines (8 loc) 382 B
export type Value = string | boolean | undefined | null; export type Mapping = Record<string, any>; export interface ArgumentArray extends Array<Argument> { } export interface ReadonlyArgumentArray extends ReadonlyArray<Argument> { } export type Argument = Value | Mapping | ArgumentArray | ReadonlyArgumentArray; export declare function classNames(...args: ArgumentArray): string;