From d4c22e84601e2468dcc08e1e1288a0700658f9ce Mon Sep 17 00:00:00 2001 From: bobreshovr Date: Sun, 14 Feb 2016 19:40:40 +0300 Subject: [PATCH] Add function, which is inverse function of STSHtmlEncode --- sharepoint/SharePoint.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/sharepoint/SharePoint.d.ts b/sharepoint/SharePoint.d.ts index e1a0960845..ddc9cae0f7 100644 --- a/sharepoint/SharePoint.d.ts +++ b/sharepoint/SharePoint.d.ts @@ -182,6 +182,7 @@ declare class _spPageContextInfo { } declare function STSHtmlEncode(value: string): string; +declare function STSHtmlDecode(value: string): string; declare function AddEvtHandler(element: HTMLElement, event: string, func: EventListener): void;