dots-wrapper
Version:
Digital Ocean v2 api wrapper - javascript - typescript - nodejs
11 lines (10 loc) • 492 B
TypeScript
import { IContext, IListResponse, IResponse } from '../../types';
import { IGenAiAnthropicKey } from '..';
export interface IListAnthropicKeysApiResponse extends IListResponse {
anthropic_keys: IGenAiAnthropicKey[];
}
export type ListAnthropicKeysResponse = IResponse<IListAnthropicKeysApiResponse>;
export declare const listAnthropicKeys: ({ httpClient }: IContext) => ({ page, per_page }?: {
page?: number;
per_page?: number;
}) => Promise<Readonly<ListAnthropicKeysResponse>>;