laravel-jstools
Version:
JS tools for building front-side of Laravel applications
11 lines (10 loc) • 461 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NotyTypeEnum = void 0;
var NotyTypeEnum;
(function (NotyTypeEnum) {
NotyTypeEnum[NotyTypeEnum["success"] = 0] = "success";
NotyTypeEnum[NotyTypeEnum["error"] = 1] = "error";
NotyTypeEnum[NotyTypeEnum["warning"] = 2] = "warning";
NotyTypeEnum[NotyTypeEnum["info"] = 3] = "info";
})(NotyTypeEnum = exports.NotyTypeEnum || (exports.NotyTypeEnum = {}));