We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77fd7e0 commit 0e64fe8Copy full SHA for 0e64fe8
bind.d.ts
@@ -1,10 +1,5 @@
1
-import * as base from './index';
+export * from './index';
2
+import { Argument } from './index';
3
-export interface IClassNamesBind
4
-{
5
- bind: (styles: any) => typeof base
6
-}
7
-
8
-declare const classNames: IClassNamesBind;
9
10
-export default classNames;
+export type Binding = { [key: string]: string };
+export default function classNames(this: Binding | void, ...args: Argument[]): string;
0 commit comments