UNPKG

@bitblit/epsilon

Version:

Tiny adapter to simplify building API gateway Lambda APIS

8 lines (7 loc) 139 B
/** * Simple decoding of a Basic Authorization header */ export interface BasicAuthToken { username: string; password: string; }