@shko.online/componentframework-mock
Version:
Mocking library to help with testing PowerApps Component Framework Components
17 lines (16 loc) • 389 B
JavaScript
/*
Copyright (c) 2022 Betim Beja and Shko Online LLC
Licensed under the MIT license.
*/
import { MetadataMock } from './Metadata.mock';
export class DateTimeMetadataMock extends MetadataMock {
constructor() {
super();
this.Behavior = void 0;
this.Format = void 0;
this.ImeMode = void 0;
this.Behavior = 0;
this.Format = '';
this.ImeMode = 0;
}
}