UNPKG

nice-ui

Version:

React design system, components, and utilities

13 lines (12 loc) 311 B
export declare class PortalState { /** * The parent portal in the portal tree. */ parent: PortalState | null; /** * Collection of all children portals in this sub-tree. */ roots: Set<HTMLElement>; addRoot(root: HTMLElement): void; delRoot(root: HTMLElement): void; }