UNPKG

xrm-mock

Version:

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

12 lines (11 loc) 569 B
/// <reference types="xrm" /> export declare class UiStandardElementMock implements Xrm.Controls.UiStandardElement { static create(label: string, visible?: boolean): UiStandardElementMock; uiLabelElement: Xrm.Controls.UiLabelElement; uiCanGetVisibleElement: Xrm.Controls.UiCanGetVisibleElement; constructor(uiLabelElement: Xrm.Controls.UiLabelElement, uiCanGetVisibleElement: Xrm.Controls.UiCanGetVisibleElement); setVisible(visible: boolean): void; getVisible(): boolean; getLabel(): string; setLabel(label: string): void; }