@yoroi/types
Version:
The Yoroi Types package of Yoroi SDK
25 lines (23 loc) • 451 B
Flow
/**
* 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,
...
};