/* @flow */ "use strict"; // does not have session export type TrezorDeviceInfo = { path: string; } export type Transport = { enumerate: () => Promise>; send: (path: string, session: string, data: ArrayBuffer) => Promise; receive: (path: string, session: string) => Promise; connect: (path: string) => Promise; disconnect: (path: string, session: string) => Promise; }