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

24 lines
711 B
TypeScript

import * as React from 'react';
export type MergeStylesShadowRootContextValue = {
/**
* Map of stylesheets available in the context.
*/
stylesheets: Map<string, CSSStyleSheet>;
/**
* Shadow root for this context.
*/
shadowRoot?: ShadowRoot | null;
};
export declare const MergeStylesShadowRootContext: React.Context<MergeStylesShadowRootContextValue | undefined>;
export type MergeStylesShadowRootProviderProps = {
children?: React.ReactNode;
/**
* Shadow root for this context.
*/
shadowRoot?: ShadowRoot | null;
};
/**
* Context for a shadow root.
*/
export declare const MergeStylesShadowRootProvider: React.FC<MergeStylesShadowRootProviderProps>;