UNPKG

@mark01/express-utils

Version:

npm package that contains utilities for express.js

6 lines (5 loc) 190 B
export declare const createBasicAuth: (username: string, password: string) => string; export declare const parseBasicAuth: (auth: string) => { username: string; password: string; };