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

12 lines
530 B
TypeScript

export interface ShadowConfig {
stylesheetKey: string;
inShadow: boolean;
window?: Window;
__isShadowConfig__: true;
}
export declare const GLOBAL_STYLESHEET_KEY = "__global__";
export declare const SHADOW_DOM_STYLESHEET_SETTING = "__shadow_dom_stylesheet__";
export declare const DEFAULT_SHADOW_CONFIG: ShadowConfig;
export declare const makeShadowConfig: (stylesheetKey: string, inShadow: boolean, window?: Window) => ShadowConfig;
export declare const isShadowConfig: (value: unknown) => value is ShadowConfig;