UNPKG

test-nut-ui

Version:

<p align="center"> <img alt="logo" src="https://img11.360buyimg.com/imagetools/jfs/t1/211965/25/7152/22022/61b16785E433119bb/aa41d7a9f7e823f3.png" width="150" style="margin-bottom: 10px;"> </p>

10 lines (9 loc) 384 B
import { ReactElement } from 'react'; import type { Root } from 'react-dom/client'; declare const MARK = "__nutui_react_root__"; type ContainerType = (Element | DocumentFragment) & { [MARK]?: Root; }; export declare function render(node: ReactElement, container: ContainerType): void; export declare function unmount(container: ContainerType): boolean | Promise<void>; export {};