UNPKG

340 BTypeScriptView Raw
1import { IStyle, IStyleBaseArray } from './IStyle';
2/**
3 * Separates the classes and style objects. Any classes that are pre-registered
4 * args are auto expanded into objects.
5 */
6export declare function extractStyleParts(...args: (IStyle | IStyle[] | false | null | undefined)[]): {
7 classes: string[];
8 objects: IStyleBaseArray;
9};