@u4/adbkit
Version:
A Typescript client for the Android Debug Bridge.
14 lines • 374 B
TypeScript
/**
* An array of reverse objects
*/
export default interface Reverse {
/**
* The remote endpoint on the device. Same format as `client.reverse()`'s `remote` argument.
*/
remote: string;
/**
* The local endpoint on the host. Same format as `client.reverse()`'s `local` argument.
*/
local: string;
}
//# sourceMappingURL=Reverse.d.ts.map