UNPKG

byte-jscript

Version:

A helper package for creating Macros and Validation Rules within the Byte Pro Loan Management System (LMS).

27 lines (26 loc) 684 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.LocalSystem = void 0; /** * **LocalSystem**: Holds all current information about the local instance and current loan in byte * @class */ var LocalSystem = /** @class */ (function () { function LocalSystem() { } LocalSystem.GetField = function (fieldName) { return ""; }; ; LocalSystem.SetField = function (fieldName, newValue) { return; }; ; LocalSystem.Application = { ShowMessageBox: function (message) { return; }, }; return LocalSystem; }()); exports.LocalSystem = LocalSystem;