mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-12 20:02:49 +00:00
12 lines
249 B
TypeScript
12 lines
249 B
TypeScript
import { ReactElement } from "react";
|
|
|
|
declare function flushToHTML(opts?: {
|
|
nonce?: string;
|
|
}): string;
|
|
declare function flushToReact<T>(opts?: {
|
|
nonce?: string;
|
|
}): Array<ReactElement<T>>;
|
|
|
|
export { flushToHTML };
|
|
export default flushToReact;
|