mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
23 lines
689 B
TypeScript
23 lines
689 B
TypeScript
// Type definitions for classnames
|
|
// Project: https://github.com/JedWatson/classnames
|
|
// Definitions by: Dave Keen <http://www.keendevelopment.ch>, Adi Dahiya <https://github.com/adidahiya>, Jason Killian <https://github.com/JKillian>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare type ClassValue = string | number | ClassDictionary | ClassArray | undefined | null | false;
|
|
|
|
interface ClassDictionary {
|
|
[id: string]: boolean | undefined | null;
|
|
}
|
|
|
|
interface ClassArray extends Array<ClassValue> { }
|
|
|
|
interface ClassNamesFn {
|
|
(...classes: ClassValue[]): string;
|
|
}
|
|
|
|
declare var classNames: ClassNamesFn;
|
|
|
|
declare module "classnames" {
|
|
export = classNames
|
|
}
|