/** * Flowtype definitions for meta * Generated by Flowgen from a Typescript Definition * Flowgen v1.21.0 */ import { HWDeviceInfo } from "../hw/hw"; import { WalletAddressMode, WalletImplementation } from "./wallet"; export type WalletMeta = { +version: number, +id: string, +plate: string, name: string, avatar: string, +implementation: WalletImplementation, addressMode: WalletAddressMode, isReadOnly: boolean, hwDeviceInfo: HWDeviceInfo | null, +isHW: boolean, isEasyConfirmationEnabled: boolean, ... };