import { ServerFeatures } from '../models'; import { Response } from '../models/response'; /** * Contract to be implemented by every method which interacts with Robot service */ export interface IRequest { url: string; send(serverFeatures: ServerFeatures): Promise>; set(robotInvocationPort: number, consentCode: number): this; }