UNPKG

xrm-mock

Version:

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

9 lines (8 loc) 316 B
/// <reference types="xrm" /> export declare class CaptureFileResponseMock implements Xrm.Device.CaptureFileResponse { fileContent: string; fileName: string; fileSize: number; mimeType: string; constructor(fileContent?: string, fileName?: string, fileSize?: number, mimeType?: string); }