Files
starface-outlook-sync-addin/node_modules/@fluentui/utilities/lib-commonjs/css.d.ts
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

29 lines
546 B
TypeScript

/**
* 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;