auth0
Version:
Auth0 Node.js SDK for the Management API v2.
13 lines (12 loc) • 569 B
text/typescript
import type { BaseClientOptions } from "../../../../BaseClient.mjs";
import { type NormalizedClientOptionsWithAuth } from "../../../../BaseClient.mjs";
import { ProviderClient } from "../resources/provider/client/Client.mjs";
export declare namespace EmailsClient {
type Options = BaseClientOptions;
}
export declare class EmailsClient {
protected readonly _options: NormalizedClientOptionsWithAuth<EmailsClient.Options>;
protected _provider: ProviderClient | undefined;
constructor(options: EmailsClient.Options);
get provider(): ProviderClient;
}