DefinitelyTyped/types/classnames/index.d.ts
uhyo cf258953db [classnames] improve types for classnames/bind and add types for classnames/dedupe (#36458)
* enable classnames/bind usage without bind

* add test for classnames/bind

* add classnames/dedupe support

* same default export trick for classnames/bind

* add me to definition author

* add dedupe.d.ts to files
2019-07-02 09:41:39 -07:00

20 lines
856 B
TypeScript

// Type definitions for classnames 2.2
// 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>
// Sean Kelley <https://github.com/seansfkelley>
// Michal Adamczyk <https://github.com/mradamczyk>
// Marvin Hagemeister <https://github.com/marvinhagemeister>
// Josh McCullough <https://github.com/joshmccullough>
// uhyo <https://github.com/uhyo>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3
import { ClassValue, ClassNamesExport } from './types';
declare const classNames: ClassNamesExport;
export = classNames;
export as namespace classNames;