UNPKG

auth0

Version:

Auth0 Node.js SDK for the Management API v2.

13 lines (12 loc) 561 B
import type { BaseClientOptions } from "../../../../BaseClient.mjs"; import { type NormalizedClientOptionsWithAuth } from "../../../../BaseClient.mjs"; import { BlocksClient } from "../resources/blocks/client/Client.mjs"; export declare namespace AnomalyClient { type Options = BaseClientOptions; } export declare class AnomalyClient { protected readonly _options: NormalizedClientOptionsWithAuth<AnomalyClient.Options>; protected _blocks: BlocksClient | undefined; constructor(options: AnomalyClient.Options); get blocks(): BlocksClient; }