@shko.online/componentframework-mock
Version:
Mocking library to help with testing PowerApps Component Framework Components
22 lines (20 loc) • 488 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.OptionMetadataMock = void 0;
/*
Copyright (c) 2022 Betim Beja and Shko Online LLC
Licensed under the MIT license.
*/
class OptionMetadataMock {
constructor(value, label, color) {
this.Label = void 0;
this.Value = void 0;
this.Color = void 0;
this.Value = value;
this.Label = label;
this.Color = color || '';
}
}
exports.OptionMetadataMock = OptionMetadataMock;