cloudflare
Version:
The official TypeScript library for the Cloudflare API
17 lines • 662 B
JavaScript
// 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 DeviceType extends APIResource {
get(deviceType, query = {}, options) {
if (isRequestOptions(query)) {
return this.get(deviceType, {}, query);
}
return this._client.get(`/radar/http/top/ases/device_type/${deviceType}`, {
query,
...options,
})._thenUnwrap((obj) => obj.result);
}
}
(function (DeviceType) {
})(DeviceType || (DeviceType = {}));
//# sourceMappingURL=device-type.mjs.map