UNPKG

xrm-mock

Version:

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

15 lines (14 loc) 606 B
/// <reference types="xrm" /> export declare class AddControlNotificationOptionsMock implements Xrm.Controls.AddControlNotificationOptions { actions?: Xrm.Controls.ControlNotificationAction[]; messages: string[]; notificationLevel?: Xrm.Controls.NotificationLevel; uniqueId: string; constructor(components: IAddControlNotificationOptionsComponents); } export interface IAddControlNotificationOptionsComponents { actions?: Xrm.Controls.ControlNotificationAction[]; messages: string[]; notificationLevel?: Xrm.Controls.NotificationLevel; uniqueId: string; }