UNPKG

@shko.online/componentframework-mock

Version:

Mocking library to help with testing PowerApps Component Framework Components

17 lines (15 loc) 385 B
/* Copyright (c) 2022 Betim Beja and Shko Online LLC Licensed under the MIT license. */ import { MetadataMock } from './Metadata.mock'; export class LookupMetadataMock extends MetadataMock implements ComponentFramework.PropertyHelper.FieldPropertyMetadata.LookupMetadata { Targets: string[]; constructor() { super(); this.Targets = []; } }