mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-06 20:23:10 +02:00
6 lines
198 B
TypeScript
6 lines
198 B
TypeScript
export * from './index';
|
|
import { Argument } from './index';
|
|
|
|
export type Binding = { [key: string]: string };
|
|
export default function classNames(this: Binding | void, ...args: Argument[]): string;
|