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