@kycaid/react-native-sdk
Version:
KYCAID React Native SDK
8 lines (7 loc) • 482 B
TypeScript
import { RootState } from '../index';
import { CommonError } from '../types';
import { VerificationData } from './types';
export declare const selectGetVerificationData: (state: RootState) => VerificationData | undefined;
export declare const selectGetVerificationLoading: (state: RootState) => boolean;
export declare const selectGetVerificationSuccess: (state: RootState) => boolean;
export declare const selectGetVerificationError: (state: RootState) => CommonError | undefined;