UNPKG

axis-core

Version:

A Node.js library written in TypeScript containing shared behavior for the other packages, e.g. code handling communication and authentication with Axis Communication cameras.

7 lines 247 B
export declare const BASIC = "Basic"; export interface Challenge { type: 'Basic'; realm: string; } export declare const createHeader: (username: string, password: string, challenge: Challenge) => string; //# sourceMappingURL=basic.d.ts.map