UNPKG

dots-wrapper

Version:

Digital Ocean v2 api wrapper - javascript - typescript - nodejs

13 lines (12 loc) 625 B
import { IContext, IListResponse, IResponse } from '../../types'; import { IGenAiAgent } from '..'; export interface IListAgentsByAnthropicKeyApiResponse extends IListResponse { agents: IGenAiAgent[]; } export interface IListAgentsByAnthropicKeyApiRequest { key_uuid: string; page?: number; per_page?: number; } export type ListAgentsByAnthropicKeyResponse = IResponse<IListAgentsByAnthropicKeyApiResponse>; export declare const listAgentsByAnthropicKey: ({ httpClient }: IContext) => ({ key_uuid, page, per_page }: IListAgentsByAnthropicKeyApiRequest) => Promise<Readonly<ListAgentsByAnthropicKeyResponse>>;