UNPKG

xrm-mock

Version:

A fake implementation of the Xrm object model. Used for testing Dynamics 365 client-side scripts.

22 lines (21 loc) 671 B
/// <reference types="xrm" /> export declare class LookupOptionsMock implements Xrm.LookupOptions { allowMultiSelect?: boolean; defaultEntityType?: string; defaultViewId?: string; entityTypes: string[]; showBarcodeScanner?: boolean; viewIds?: string[]; disableMru?: boolean; filters?: Xrm.LookupFilterOptions[]; searchText?: string; constructor(components: ILookupOptionsComponents); } export interface ILookupOptionsComponents { allowMultiSelect?: boolean; defaultEntityType?: string; defaultViewId?: string; entityTypes?: string[]; showBarcodeScanner?: boolean; viewIds?: string[]; }