mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-15 17:47:49 +08:00
6 lines
194 B
TypeScript
6 lines
194 B
TypeScript
export type ClassNamesFn = (
|
|
...args: Array<string | string[] | Record<string, boolean | undefined | null>>
|
|
) => string;
|
|
|
|
export function bind(styles: Record<string, string>): ClassNamesFn;
|