UNPKG

xrm-mock

Version:

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

10 lines (9 loc) 488 B
/// <reference types="xrm" /> export declare class GridMock implements Xrm.Controls.Grid { private rows; private selectedRows; constructor(rows: Xrm.Collection.ItemCollection<Xrm.Controls.Grid.GridRow>, selectedRows: Xrm.Collection.ItemCollection<Xrm.Controls.Grid.GridRow>); getRows(): Xrm.Collection.ItemCollection<Xrm.Controls.Grid.GridRow>; getSelectedRows(): Xrm.Collection.ItemCollection<Xrm.Controls.Grid.GridRow>; getTotalRecordCount(): number; }