@criipto/verify-react
Version:
Verify SDK for React Single Page Applications
13 lines (12 loc) • 446 B
TypeScript
import React from 'react';
import { Links } from './shared';
interface Props {
children: React.ReactElement;
links: Links;
onError: (error: string) => void;
onComplete: (completeUrl: string) => Promise<void>;
onInitiate: () => void;
onLog: (...statements: string[]) => void;
}
export default function SEBankIDSameDevicePoll(props: Props): React.ReactElement<unknown, string | React.JSXElementConstructor<any>>;
export {};