@shko.online/componentframework-mock
Version:
Mocking library to help with testing PowerApps Component Framework Components
20 lines (17 loc) • 539 B
text/typescript
/*
Copyright (c) 2022 Betim Beja and Shko Online LLC
Licensed under the MIT license.
*/
import { NumberMetadataMock } from './NumberMetadata.mock';
export class WholeNumberMetadataMock
extends NumberMetadataMock
implements ComponentFramework.PropertyHelper.FieldPropertyMetadata.WholeNumberMetadata
{
Format: string;
LanguageByCode?: ComponentFramework.Dictionary | undefined;
TimeZoneByCode?: ComponentFramework.Dictionary | undefined;
constructor() {
super();
this.Format = '#';
}
}