first commit

This commit is contained in:
Stefan Hacker
2026-04-03 09:38:48 +02:00
commit 37ad745546
47450 changed files with 3120798 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
/**
* Dictionary of booleans.
*
* @internal
*/
export interface IDictionary {
[className: string]: boolean;
}
/**
* Serializable object.
*
* @internal
*/
export interface ISerializableObject {
toString?: () => string;
}
/**
* css input type.
*
* @internal
*/
export type ICssInput = string | ISerializableObject | IDictionary | null | undefined | boolean;
/**
* Concatination helper, which can merge class names together. Skips over falsey values.
*
* @public
*/
export declare function css(...args: ICssInput[]): string;