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

11 lines
402 B
TypeScript

import { IStyle, IStyleBaseArray } from './IStyle';
import { Stylesheet } from './Stylesheet';
/**
* Separates the classes and style objects. Any classes that are pre-registered
* args are auto expanded into objects.
*/
export declare function extractStyleParts(sheet: Stylesheet, ...args: (IStyle | IStyle[] | false | null | undefined)[]): {
classes: string[];
objects: IStyleBaseArray;
};