connection-string
Version:
Advanced URL Connection String parser + generator.
11 lines (10 loc) • 325 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.HostType = void 0;
var HostType;
(function (HostType) {
HostType["domain"] = "domain";
HostType["socket"] = "socket";
HostType["IPv4"] = "IPv4";
HostType["IPv6"] = "IPv6";
})(HostType || (exports.HostType = HostType = {}));