UNPKG

@criipto/verify-react

Version:

Verify SDK for React Single Page Applications

8 lines (7 loc) 264 B
export interface UsePollProps { shouldPoll: boolean; pollUrl: string; onError: (error: string) => void; onComplete: (completeUrl: string) => void; } export declare function usePoll({ shouldPoll, pollUrl, onComplete, onError }: UsePollProps): void;