14 lines
276 B
TypeScript
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;
|
|
}
|