UNPKG

@shko.online/componentframework-mock

Version:

Mocking library to help with testing PowerApps Component Framework Components

21 lines (20 loc) 498 B
/* Copyright (c) 2022 Betim Beja and Shko Online LLC Licensed under the MIT license. */ export class MetadataMock { constructor() { this.DisplayName = void 0; this.LogicalName = void 0; this.RequiredLevel = void 0; this.IsSecured = void 0; this.SourceType = void 0; this.Description = void 0; this.DisplayName = ''; this.LogicalName = ''; this.RequiredLevel = 0; this.IsSecured = false; this.SourceType = 0; this.Description = ''; } }