mirror of https://github.com/ANL-CEEESA/RELOG.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
400 B
16 lines
400 B
export as namespace Classcat
|
|
|
|
export interface ClassObject {
|
|
[key: string]: boolean | any
|
|
}
|
|
|
|
export interface ClassArray extends Array<Class> {}
|
|
|
|
export type Class = string | number | null | undefined | ClassObject | ClassArray
|
|
|
|
/**
|
|
* @param names A string, array or object of CSS class names (as keys).
|
|
* @returns The class attribute string.
|
|
*/
|
|
export default function cc(names: Class): string
|