securityos/node_modules/next/dist/client/portal/index.d.ts

8 lines
218 B
TypeScript
Raw Permalink Normal View History

2024-09-06 15:32:35 +00:00
/// <reference types="react" />
type PortalProps = {
children: React.ReactNode;
type: string;
};
export declare const Portal: ({ children, type }: PortalProps) => import("react").ReactPortal | null;
export {};