@microsoft/dev-tunnels-contracts
Version:
Tunnels library for Visual Studio tools
15 lines • 387 B
TypeScript
import { TunnelListByRegion } from './tunnelListByRegion';
/**
* Data contract for response of a list tunnel by region call.
*/
export interface TunnelListByRegionResponse {
/**
* List of tunnels
*/
value?: TunnelListByRegion[];
/**
* Link to get next page of results.
*/
nextLink?: string;
}
//# sourceMappingURL=tunnelListByRegionResponse.d.ts.map