@shko.online/componentframework-mock
Version:
Mocking library to help with testing PowerApps Component Framework Components
15 lines (14 loc) • 326 B
JavaScript
/*
Copyright (c) 2022 Betim Beja and Shko Online LLC
Licensed under the MIT license.
*/
export 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 || '';
}
}