as-event-tracker
Version:
Logs events in the browser based on client interactions.
19 lines • 689 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.DeviceType = exports.OsType = void 0;
var OsType;
(function (OsType) {
OsType["Windows"] = "Windows";
OsType["Macintosh"] = "Macintosh";
OsType["Linux"] = "Linux";
OsType["Android"] = "Android";
OsType["iOS"] = "iOS";
OsType["Unknown"] = "unknown";
})(OsType = exports.OsType || (exports.OsType = {}));
var DeviceType;
(function (DeviceType) {
DeviceType["Desktop"] = "Desktop";
DeviceType["Tablet"] = "Tablet";
DeviceType["Mobile"] = "Mobile";
})(DeviceType = exports.DeviceType || (exports.DeviceType = {}));
//# sourceMappingURL=ChannelMeta.js.map
;