mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* 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
20 lines
856 B
TypeScript
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;
|