UNPKG

react-native-unit-components

Version:

Unit React Native components

15 lines (11 loc) 465 B
import type { UNCheckDepositData } from '../../types/shared/checkDeposit.types'; export enum CheckMessage { // check deposit CHECK_DEPOSIT_CREATED = 'unitCheckDepositCreated', CHECK_DEPOSIT_RESTART_REQUEST = 'unitCheckDepositRestartRequest' } export type CheckDepositCreatedEvent = UNCheckDepositData export type CheckDepositRestartRequestEvent = UNCheckDepositData export type CheckEvent = | CheckDepositCreatedEvent | CheckDepositRestartRequestEvent