dots-wrapper
Version:
Digital Ocean v2 api wrapper - javascript - typescript - nodejs
7 lines (6 loc) • 339 B
TypeScript
import { IResponse, IContext } from '../../types';
export interface IDestroySshKeyApiRequest {
ssh_key_id: string | number;
}
export type DestroySshKeyResponse = IResponse<void>;
export declare const destroySshKey: ({ httpClient, }: IContext) => ({ ssh_key_id, }: IDestroySshKeyApiRequest) => Promise<Readonly<DestroySshKeyResponse>>;