cloudflare
Version:
The official TypeScript library for the Cloudflare API
16 lines • 679 B
JavaScript
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from 'cloudflare/resource';
import * as Layer3API from 'cloudflare/resources/radar/attacks/layer3/layer3';
import * as Layer7API from 'cloudflare/resources/radar/attacks/layer7/layer7';
export class Attacks extends APIResource {
constructor() {
super(...arguments);
this.layer3 = new Layer3API.Layer3(this._client);
this.layer7 = new Layer7API.Layer7(this._client);
}
}
(function (Attacks) {
Attacks.Layer3 = Layer3API.Layer3;
Attacks.Layer7 = Layer7API.Layer7;
})(Attacks || (Attacks = {}));
//# sourceMappingURL=attacks.mjs.map