xrm-mock
Version:
A fake implementation of the Xrm object model. Used for testing Dynamics 365 client-side scripts.
9 lines (8 loc) • 359 B
TypeScript
/// <reference types="xrm" />
export declare class OfflineErrorCallbackObjectMock implements Xrm.Async.OfflineErrorCallbackObject {
debugMessage: string;
errorCallbackObject: Xrm.Async.ErrorCallbackObject;
errorCode: number;
message: string;
constructor(errorCallbackObject: Xrm.Async.ErrorCallbackObject, debugMessage: string);
}