nope-js-browser
Version:
NoPE Runtime for the Browser. For nodejs please use nope-js-node
13 lines (12 loc) • 549 B
TypeScript
import { IGenericNopeModule, INopeModule } from "../types";
import { TRenderInstancePage } from "../types/ui";
/**
* Converts the convertInstanceRenderPage to a string, which could be
* store or something similar.
*
* @export
* @template I The Instance Type
* @param {(TRenderInstancePage<I & IGenericNopeModule>)} callback The callback to stringify.
* @return {string} The parsed String.
*/
export declare function convertInstanceRenderPage<I extends INopeModule>(callback: TRenderInstancePage<I & IGenericNopeModule>): string;