UNPKG

react-native-unit-components

Version:

Unit React Native components

13 lines (9 loc) 247 B
import type { UNAccount } from '../../types/shared'; export enum AccountMessage { UNIT_ACCOUNT_CHANGED = 'unitAccountChanged' } export interface AccountChangedEvent { account: UNAccount; } export type AccountEvent = | AccountChangedEvent