main
Last change
on this file since d24f17c was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
334 bytes
|
Rev | Line | |
---|
[d24f17c] | 1 | import { ArgumentArray } from './index.js';
|
---|
| 2 |
|
---|
| 3 | declare namespace classNames {
|
---|
| 4 | type Binding = Record<string, string>;
|
---|
| 5 | }
|
---|
| 6 |
|
---|
| 7 | interface ClassNames {
|
---|
| 8 | (this: classNames.Binding | undefined, ...args: ArgumentArray): string;
|
---|
| 9 |
|
---|
| 10 | default: ClassNames;
|
---|
| 11 | }
|
---|
| 12 |
|
---|
| 13 | declare const classNames: ClassNames;
|
---|
| 14 |
|
---|
| 15 | export as namespace classNames;
|
---|
| 16 |
|
---|
| 17 | export = classNames;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.