first commit

This commit is contained in:
Stefan Hacker
2026-04-03 09:38:48 +02:00
commit 37ad745546
47450 changed files with 3120798 additions and 0 deletions
@@ -0,0 +1,23 @@
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>;