UNPKG

auth0

Version:

Auth0 Node.js SDK for the Management API v2.

13 lines (12 loc) 558 B
import type { BaseClientOptions } from "../../../../BaseClient.js"; import { type NormalizedClientOptionsWithAuth } from "../../../../BaseClient.js"; import { BlocksClient } from "../resources/blocks/client/Client.js"; 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; }