UNPKG

@shko.online/componentframework-mock

Version:

Mocking library to help with testing PowerApps Component Framework Components

28 lines (26 loc) 636 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MetadataMock = void 0; /* Copyright (c) 2022 Betim Beja and Shko Online LLC Licensed under the MIT license. */ 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 = ''; } } exports.MetadataMock = MetadataMock;