UNPKG

@ozen-ui/kit

Version:

React component library

5 lines (4 loc) 272 B
import type { RefObject } from 'react'; import type { PortalContainerElement } from './element'; export type PortalBaseContainer = PortalContainerElement | RefObject<PortalContainerElement>; export type PortalContainer = PortalBaseContainer | (() => PortalBaseContainer);