UNPKG

cloudflare

Version:

The official TypeScript library for the Cloudflare API

20 lines 832 B
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. import { APIResource } from 'cloudflare/resource'; import { isRequestOptions } from 'cloudflare/core'; export class Top extends APIResource { browserFamilies(query = {}, options) { if (isRequestOptions(query)) { return this.browserFamilies({}, query); } return this._client.get('/radar/http/top/browser_families', { query, ...options })._thenUnwrap((obj) => obj.result); } browsers(query = {}, options) { if (isRequestOptions(query)) { return this.browsers({}, query); } return this._client.get('/radar/http/top/browsers', { query, ...options })._thenUnwrap((obj) => obj.result); } } (function (Top) { })(Top || (Top = {})); //# sourceMappingURL=top.mjs.map