UNPKG

691 BTypeScriptView Raw
1import { IStyle, IStyleBaseArray } from './IStyle';
2import { IStyleOptions } from './IStyleOptions';
3/**
4 * Concatenation helper, which can merge class names together. Skips over falsey values.
5 *
6 * @public
7 */
8export declare function mergeStyles(...args: (IStyle | IStyleBaseArray | false | null | undefined)[]): string;
9/**
10 * Concatenation helper, which can merge class names together. Skips over falsey values.
11 * Accepts a set of options that will be used when calculating styles.
12 *
13 * @public
14 */
15export declare function mergeCss(args: (IStyle | IStyleBaseArray | false | null | undefined) | (IStyle | IStyleBaseArray | false | null | undefined)[], options?: IStyleOptions): string;