cloudflare
Version:
The official TypeScript library for the Cloudflare API
14 lines • 564 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 History extends APIResource {
get(query = {}, options) {
if (isRequestOptions(query)) {
return this.get({}, query);
}
return this._client.get('/user/billing/history', { query, ...options })._thenUnwrap((obj) => obj.result);
}
}
(function (History) {
})(History || (History = {}));
//# sourceMappingURL=history.mjs.map