dots-wrapper
Version:
Digital Ocean v2 api wrapper - javascript - typescript - nodejs
11 lines (10 loc) • 486 B
TypeScript
import { IContext, IResponse } from '../../types';
import { IGenAiAnthropicKey } from '..';
export interface IGetAnthropicKeyApiResponse {
anthropic_key: IGenAiAnthropicKey;
}
export interface IGetAnthropicKeyApiRequest {
key_uuid: string;
}
export type GetAnthropicKeyResponse = IResponse<IGetAnthropicKeyApiResponse>;
export declare const getAnthropicKey: ({ httpClient }: IContext) => ({ key_uuid }: IGetAnthropicKeyApiRequest) => Promise<Readonly<GetAnthropicKeyResponse>>;