@yoroi/claim
Version:
The Claim (proof-of-onboarding) package of Yoroi SDK
21 lines (19 loc) • 528 B
Flow
/**
* Flowtype definitions for wrapperMaker
* Generated by Flowgen from a Typescript Definition
* Flowgen v1.21.0
*/
import { Claim } from "@yoroi/types";
import * as React from "react";
import { QueryClient } from "react-query";
import { ClaimState } from "../translators/reactjs/state/state";
declare type Props = {
queryClient: QueryClient,
claimManager: Claim.Manager,
initialState?: ClaimState,
...
};
declare export var wrapperMaker: (x: Props) => (x: {
children: React.Node,
...
}) => React.JSX.Element;