mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-21 12:11:52 +02:00
9 lines
259 B
TypeScript
9 lines
259 B
TypeScript
|
import { ReactNode } from 'react';
|
||
|
export declare function usePortalRoot(): boolean;
|
||
|
interface ForcePortalRootProps {
|
||
|
force: boolean;
|
||
|
children: ReactNode;
|
||
|
}
|
||
|
export declare function ForcePortalRoot(props: ForcePortalRootProps): JSX.Element;
|
||
|
export {};
|