UNPKG

xrm-mock

Version:

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

8 lines (7 loc) 228 B
/// <reference types="xrm" /> export declare class LookupValueMock implements Xrm.LookupValue { id: string; name?: string; entityType: string; constructor(id: string, entityType: string, name?: string); }