UNPKG

auth0

Version:

Auth0 Node.js SDK for the Management API v2.

5 lines (4 loc) 154 B
export type Supplier<T> = T | Promise<T> | (() => T | Promise<T>); export declare const Supplier: { get: <T>(supplier: Supplier<T>) => Promise<T>; };