UNPKG

@apollo/client

Version:

A fully-featured caching GraphQL client.

13 lines 526 B
import * as React from 'react'; export declare function getDataFromTree(tree: React.ReactNode, context?: { [key: string]: any; }): Promise<string>; export type GetMarkupFromTreeOptions = { tree: React.ReactNode; context?: { [key: string]: any; }; renderFunction?: (tree: React.ReactElement<any>) => string | PromiseLike<string>; }; export declare function getMarkupFromTree({ tree, context, renderFunction }: GetMarkupFromTreeOptions): Promise<string>; //# sourceMappingURL=getDataFromTree.d.ts.map