UNPKG

xrm-mock

Version:

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

9 lines (8 loc) 413 B
/// <reference types="xrm" /> import { ItemCollectionMock } from "../../collection/itemcollection/itemcollection.mock"; import { FormItemMock } from "../formitem/formitem.mock"; export declare class FormSelectorMock implements Xrm.Controls.FormSelector { items: ItemCollectionMock<FormItemMock>; constructor(items: ItemCollectionMock<FormItemMock>); getCurrentItem(): Xrm.Controls.FormItem; }