diff --git a/jquery.cookie/jquery.cookie.d.ts b/jquery.cookie/jquery.cookie.d.ts index 64dcc56a6..06380f999 100644 --- a/jquery.cookie/jquery.cookie.d.ts +++ b/jquery.cookie/jquery.cookie.d.ts @@ -19,10 +19,9 @@ interface JQueryCookieStatic { (): {[key:string]:string}; (name: string): any; + (name: string, converter: (value: string) => any): 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; }