@shko.online/componentframework-mock
Version:
Mocking library to help with testing PowerApps Component Framework Components
15 lines (14 loc) • 351 B
JavaScript
/*
Copyright (c) 2022 Betim Beja and Shko Online LLC
Licensed under the MIT license.
*/
import { MetadataMock } from './Metadata.mock';
export class OptionSetMetadataMock extends MetadataMock {
constructor() {
super();
this.Options = void 0;
this.DefaultValue = void 0;
this.Options = [];
this.DefaultValue = 0;
}
}