mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-21 08:01:52 +02:00
8 lines
259 B
TypeScript
8 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 {};
|