UNPKG

dots-wrapper

Version:

Digital Ocean v2 api wrapper - javascript - typescript - nodejs

10 lines 421 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.listAnthropicKeys = void 0; const listAnthropicKeys = ({ httpClient }) => ({ page = 1, per_page = 25 } = {}) => { const url = '/gen-ai/anthropic/keys'; const params = { page, per_page }; return httpClient.get(url, { params }); }; exports.listAnthropicKeys = listAnthropicKeys; //# sourceMappingURL=list-anthropic-keys.js.map