UNPKG

xrmscriptworkbench

Version:

The base types to create custom script for Dynamics 365 within a XrmScriptWorkbench project.

33 lines (32 loc) 1.15 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var ScriptRegistry = /** @class */ (function () { function ScriptRegistry() { } ScriptRegistry.ClassName = undefined; ScriptRegistry.LogicalName = undefined; ScriptRegistry.ProxyType = undefined; ScriptRegistry.FormNames = []; ScriptRegistry.TabRegistrationList = []; ScriptRegistry.AttributeRegistrationList = []; ScriptRegistry.HasOnLoad = false; ScriptRegistry.HasOnSave = false; return ScriptRegistry; }()); exports.ScriptRegistry = ScriptRegistry; var TabRegistration = /** @class */ (function () { function TabRegistration(formName, tabName) { this.formName = formName; this.tabName = tabName; } return TabRegistration; }()); exports.TabRegistration = TabRegistration; var AttributeRegistration = /** @class */ (function () { function AttributeRegistration(formName, attributeName) { this.formName = formName; this.attributeName = attributeName; } return AttributeRegistration; }()); exports.AttributeRegistration = AttributeRegistration;