xrm-mock
Version:
A fake implementation of the Xrm object model. Used for testing Dynamics 365 client-side scripts.
26 lines • 834 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SidePanesMock = void 0;
var SidePanesMock = /** @class */ (function () {
function SidePanesMock() {
}
SidePanesMock.prototype.createPane = function (paneOptions) {
throw new Error("Method not implemented.");
};
;
SidePanesMock.prototype.getAllPanes = function () {
throw new Error("Method not implemented.");
};
;
SidePanesMock.prototype.getPane = function (panelId) {
throw new Error("Method not implemented.");
};
;
SidePanesMock.prototype.getSelectedPane = function () {
throw new Error("Method not implemented.");
};
;
return SidePanesMock;
}());
exports.SidePanesMock = SidePanesMock;
//# sourceMappingURL=sidePanes.mock.js.map