UNPKG

@shko.online/componentframework-mock

Version:

Mocking library to help with testing PowerApps Component Framework Components

17 lines (16 loc) 391 B
/* Copyright (c) 2022 Betim Beja and Shko Online LLC Licensed under the MIT license. */ import { MetadataMock } from './Metadata.mock'; export class StringMetadataMock extends MetadataMock { constructor() { super(); this.Format = void 0; this.ImeMode = void 0; this.MaxLength = void 0; this.Format = ''; this.ImeMode = 0; this.MaxLength = 100; } }