UNPKG

xrm-mock

Version:

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

9 lines (8 loc) 301 B
/// <reference types="xrm" /> export declare class EncodingMock implements Xrm.Encoding { xmlAttributeEncode(arg: string): string; xmlEncode(arg: string): string; htmlAttributeEncode(arg: string): string; htmlDecode(arg: string): string; htmlEncode(arg: string): string; }