mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +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;
|