diff --git a/jquery.cookie/jquery.cookie.d.ts b/jquery.cookie/jquery.cookie.d.ts index 3439382c3..64dcc56a6 100644 --- a/jquery.cookie/jquery.cookie.d.ts +++ b/jquery.cookie/jquery.cookie.d.ts @@ -21,6 +21,8 @@ interface JQueryCookieStatic { (name: string): any; (name: string, value: string): void; (name: string, value: string, options: JQueryCookieOptions): void; + (name: string, converter: (value: string) => any): void; + (name: string, converter: (value: string) => any, options: JQueryCookieOptions): void; (name: string, value: any): void; (name: string, value: any, options: JQueryCookieOptions): void; } @@ -30,4 +32,4 @@ interface JQueryStatic { removeCookie(name: string): boolean; removeCookie(name: string, options: JQueryCookieOptions): boolean; -} \ No newline at end of file +}