UNPKG

auth0

Version:

Auth0 Node.js SDK for the Management API v2.

9 lines (8 loc) 259 B
export interface BasicAuth { username?: string; password?: string; } export declare const BasicAuth: { toAuthorizationHeader: (basicAuth: BasicAuth | undefined) => string | undefined; fromAuthorizationHeader: (header: string) => BasicAuth; };