UNPKG

dots-wrapper

Version:

Digital Ocean v2 api wrapper - javascript - typescript - nodejs

7 lines (6 loc) 318 B
import { IResponse, IContext } from '../../types'; export interface IDeleteAgentApiRequest { agent_uuid: string; } export type DeleteAgentResponse = IResponse<void>; export declare const deleteAgent: ({ httpClient }: IContext) => ({ agent_uuid }: IDeleteAgentApiRequest) => Promise<Readonly<DeleteAgentResponse>>;