From aeecb928ad1135e1d7b500c823fe22fe4c7398e1 Mon Sep 17 00:00:00 2001 From: Allan Hvam Date: Sat, 15 Nov 2014 12:18:38 +0100 Subject: [PATCH] Status.addStatus optional strHtml and atBegining strHtml and atBegining are optional, this is also how its used in the documentation: http://msdn.microsoft.com/en-us/library/office/ff410028(v=office.14).aspx --- sharepoint/SharePoint.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sharepoint/SharePoint.d.ts b/sharepoint/SharePoint.d.ts index 3216e9fc9..9ea16186d 100644 --- a/sharepoint/SharePoint.d.ts +++ b/sharepoint/SharePoint.d.ts @@ -7241,7 +7241,7 @@ declare module SP { } export class Status { - static addStatus(strTitle: string, strHtml: string, atBegining: boolean): string; + static addStatus(strTitle: string, strHtml?: string, atBegining?: boolean): string; static appendStatus(sid: string, strTitle: string, strHtml: string): string; static updateStatus(sid: string, strHtml: string): void; static setStatusPriColor(sid: string, strColor: string): void;