UNPKG

onfido-sdk-ui

Version:

JavaScript SDK view layer for Onfido identity verification

13 lines (9 loc) 306 B
import { CaptureActions, CaptureState } from './captures' import { GlobalActions, GlobalState } from './globals' export * from './captures' export * from './globals' export type CombinedActions = CaptureActions | GlobalActions export type RootState = { captures: CaptureState globals: GlobalState }