auth0
Version:
Auth0 Node.js SDK for the Management API v2.
17 lines (16 loc) • 660 B
JavaScript
;
// This file was auto-generated by Fern from our API Definition.
Object.defineProperty(exports, "__esModule", { value: true });
exports.AnomalyClient = void 0;
const BaseClient_js_1 = require("../../../../BaseClient.js");
const Client_js_1 = require("../resources/blocks/client/Client.js");
class AnomalyClient {
constructor(options) {
this._options = (0, BaseClient_js_1.normalizeClientOptionsWithAuth)(options);
}
get blocks() {
var _a;
return ((_a = this._blocks) !== null && _a !== void 0 ? _a : (this._blocks = new Client_js_1.BlocksClient(this._options)));
}
}
exports.AnomalyClient = AnomalyClient;