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).

8 lines (7 loc) 200 B
export default interface IDictionary<T> { add(key: string, value: T): void; remove(key: string): void; containsKey(key: string): boolean; keys(): string[]; values(): T[]; }