onfido-sdk-ui
Version:
JavaScript SDK view layer for Onfido identity verification
11 lines (8 loc) • 319 B
text/typescript
import type { Action } from 'redux'
import * as constants from '~types/redux/constants'
import * as globals from './globals'
import * as captures from './captures'
const reset = (): Action<typeof constants.RESET_STORE> => ({
type: constants.RESET_STORE,
})
export const actions = { ...globals, ...captures, reset }