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.

18 lines 497 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Protocol = void 0; /** * Enum describing communication protocols. */ var Protocol; (function (Protocol) { /** * Hypertext Transfer Protocol (HTTP). */ Protocol[Protocol["Http"] = 0] = "Http"; /** * HTTP over Transport Layer Security (TLS). */ Protocol[Protocol["Https"] = 1] = "Https"; })(Protocol || (exports.Protocol = Protocol = {})); //# sourceMappingURL=Protocol.js.map