/** * Flowtype definitions for hw * Generated by Flowgen from a Typescript Definition * Flowgen v1.21.0 */ export type HWDeviceInfo = { bip44AccountPublic: string, hwFeatures: HWFeatures, ... }; export type HWFeatures = { vendor: string, model: string, deviceId: string | null | void, deviceObj: HWDeviceObj | null | void, serialHex?: string, ... }; export type HWDeviceObj = { vendorId: number, productId: number, ... };