UNPKG

auth0

Version:

Auth0 Node.js SDK for the Management API v2.

8 lines (7 loc) 263 B
import type { EndpointMetadata } from "../fetcher/EndpointMetadata.mjs"; import type { AuthRequest } from "./AuthRequest.mjs"; export interface AuthProvider { getAuthRequest(arg?: { endpointMetadata?: EndpointMetadata; }): Promise<AuthRequest>; }