UNPKG

media-stream-library

Version:

Media stream library for Node & the Web.

7 lines (6 loc) 203 B
export type ChallengeParams = Map<string, string>; export interface Challenge { type: string; params: ChallengeParams; } export declare const parseWWWAuthenticate: (header: string) => Challenge;