Files
2026-02-10 01:14:19 +00:00

8 lines
322 B
TypeScript

import { ReactElement } from 'react';
import { RootOptions } from 'react-dom/client';
declare const renderElement: (node: ReactElement, el: Element, rootOptions?: RootOptions) => Promise<void>;
declare const unmountElement: (el: Element, shouldUseNewRootApi?: boolean) => void;
export { renderElement, unmountElement };