UNPKG

funda-ui

Version:

React components using pure Bootstrap 5+ which does not contain any external style and script libraries.

16 lines (15 loc) 423 B
/** * Output of class name * @param {*} s - Any * @param {String} defaultCls - Default string * @param {?*} targetCls - Any * @returns {*} */ declare function clsWrite(s: any, defaultCls: string, targetCls?: any): any; /** * Combined classnames * @param {*} args * @returns {String|undefined} */ declare function combinedCls(...args: any[]): string | undefined; export { combinedCls, clsWrite };