UNPKG

xrm-mock

Version:

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

9 lines (8 loc) 285 B
/// <reference types="xrm" /> export declare class AutoCompleteCommandMock implements Xrm.Controls.AutoCompleteCommand { id: string; icon?: string; label: string; constructor(id: string, label: string, icon?: string, action?: () => void); action(): void; }