@nutui/nutui-react
Version:
京东风格的轻量级移动端 React 组件库,支持一套代码生成 H5 和小程序
10 lines (9 loc) • 384 B
TypeScript
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 {};