fivem-js
Version:
Javascript/Typescript wrapper for the FiveM natives
15 lines (14 loc) • 815 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NotificationType = void 0;
var NotificationType;
(function (NotificationType) {
NotificationType[NotificationType["Default"] = 0] = "Default";
NotificationType[NotificationType["Bubble"] = 1] = "Bubble";
NotificationType[NotificationType["Mail"] = 2] = "Mail";
NotificationType[NotificationType["FriendRequest"] = 3] = "FriendRequest";
NotificationType[NotificationType["Default2"] = 4] = "Default2";
NotificationType[NotificationType["Reply"] = 7] = "Reply";
NotificationType[NotificationType["ReputationPoints"] = 8] = "ReputationPoints";
NotificationType[NotificationType["Money"] = 9] = "Money";
})(NotificationType = exports.NotificationType || (exports.NotificationType = {}));