byte-jscript
Version:
A helper package for creating Macros and Validation Rules within the Byte Pro Loan Management System (LMS).
18 lines (17 loc) • 537 B
TypeScript
interface LocalApplication {
/**
* Display a message box on screen with a provided message
* @param message
*/
ShowMessageBox(message: string): void;
}
/**
* **LocalSystem**: Holds all current information about the local instance and current loan in byte
* @class
*/
export declare class LocalSystem {
static GetField(fieldName: string): string | number | null;
static SetField(fieldName: string, newValue: string | number): void;
static Application: LocalApplication;
}
export {};