UNPKG

fakexrmeasy

Version:

This project aims to provide mocks already implemented for Web API calls made from Javascript. This is a work in progress and way less mature than [its C# counterpart](https://github.com/jordimontana82/fake-xrm-easy).

7 lines (6 loc) 241 B
import IFakeMessageExecutorResponse from './IFakeMessageExecutorResponse'; export default interface IFakeMessageExecutor { method: string; relativeUrl: string; execute: (requestBody: any) => IFakeMessageExecutorResponse; }