cloudflare
Version:
The official TypeScript library for the Cloudflare API
16 lines • 756 B
JavaScript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from 'cloudflare/resource';
import * as ContentAPI from 'cloudflare/resources/workers/services/environments/content';
import * as SettingsAPI from 'cloudflare/resources/workers/services/environments/settings';
export class Environments extends APIResource {
constructor() {
super(...arguments);
this.content = new ContentAPI.Content(this._client);
this.settings = new SettingsAPI.Settings(this._client);
}
}
(function (Environments) {
Environments.Content = ContentAPI.Content;
Environments.Settings = SettingsAPI.Settings;
})(Environments || (Environments = {}));
//# sourceMappingURL=environments.mjs.map