dots-wrapper
Version:
Digital Ocean v2 api wrapper - javascript - typescript - nodejs
8 lines (7 loc) • 373 B
TypeScript
import { IResponse, IContext } from '../../types';
export interface IDeleteAgentKeyApiRequest {
agent_uuid: string;
api_key_uuid: string;
}
export type DeleteAgentKeyResponse = IResponse<void>;
export declare const deleteAgentKey: ({ httpClient }: IContext) => ({ agent_uuid, api_key_uuid }: IDeleteAgentKeyApiRequest) => Promise<Readonly<DeleteAgentKeyResponse>>;