UNPKG

dots-wrapper

Version:

Digital Ocean v2 api wrapper - javascript - typescript - nodejs

7 lines (6 loc) 349 B
import { IContext, IResponse } from '../../types'; export interface IDeleteAnthropicKeyApiRequest { key_uuid: string; } export type DeleteAnthropicKeyResponse = IResponse<void>; export declare const deleteAnthropicKey: ({ httpClient }: IContext) => ({ key_uuid }: IDeleteAnthropicKeyApiRequest) => Promise<Readonly<DeleteAnthropicKeyResponse>>;