@shko.online/componentframework-mock
Version:
Mocking library to help with testing PowerApps Component Framework Components
24 lines (22 loc) • 596 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.NumberMetadataMock = void 0;
var _Metadata = require("./Metadata.mock");
/*
Copyright (c) 2022 Betim Beja and Shko Online LLC
Licensed under the MIT license.
*/
class NumberMetadataMock extends _Metadata.MetadataMock {
constructor() {
super();
this.ImeMode = void 0;
this.MinValue = void 0;
this.MaxValue = void 0;
this.ImeMode = 0;
this.MinValue = Number.MIN_SAFE_INTEGER;
this.MaxValue = Number.MAX_SAFE_INTEGER;
}
}
exports.NumberMetadataMock = NumberMetadataMock;