BlueWallet/models/itemTypes.ts
2025-04-28 16:52:51 -04:00

14 lines
276 B
TypeScript

export enum ItemType {
WalletSection = 'wallet',
TransactionSection = 'transaction',
AddressSection = 'address',
WalletGroupSection = 'walletGroup',
}
export interface AddressItemData {
address: string;
walletID: string;
index: number;
isInternal: boolean;
}