dots-wrapper
Version:
Digital Ocean v2 api wrapper - javascript - typescript - nodejs
8 lines (7 loc) • 405 B
TypeScript
import { IContext, IResponse } from '../../types';
export interface IDetachAgentRouteApiRequest {
parent_agent_uuid: string;
child_agent_uuid: string;
}
export type DetachAgentRouteResponse = IResponse<void>;
export declare const detachAgentRoute: ({ httpClient }: IContext) => ({ parent_agent_uuid, child_agent_uuid }: IDetachAgentRouteApiRequest) => Promise<Readonly<DetachAgentRouteResponse>>;