@shko.online/componentframework-mock
Version:
Mocking library to help with testing PowerApps Component Framework Components
17 lines (16 loc) • 434 B
JavaScript
/*
Copyright (c) 2022 Betim Beja and Shko Online LLC
Licensed under the MIT license.
*/
import { MetadataMock } from './Metadata.mock';
export class NumberMetadataMock extends 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;
}
}