UNPKG

auth0

Version:

Auth0 Node.js SDK for the Management API v2.

10 lines (9 loc) 328 B
/** * A constant that indicates which environment and version the SDK is running in. */ export declare const RUNTIME: Runtime; export interface Runtime { type: "browser" | "web-worker" | "deno" | "bun" | "node" | "react-native" | "unknown" | "workerd" | "edge-runtime"; version?: string; parsedVersion?: number; }