UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

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