Updating to version 1.2.7

This commit is contained in:
Alexey Gorshkov
2016-01-03 01:15:27 +03:00
parent 88b29b7995
commit 14fd30b019
2 changed files with 16 additions and 11 deletions
+6 -5
View File
@@ -1,11 +1,12 @@
// Type definitions for jsurl 1.2.2
// Type definitions for jsurl 1.2.7
// Project: https://github.com/Mikhus/jsurl
// Definitions by: Alexey Gorshkov <https://github.com/agorshkov23>
// Definitions: https://github.com/agorshkov23/DefinitelyTyped
declare class Url {
constructor(url?: string);
query: any;
declare class Url<T> {
constructor();
constructor(url: string);
query: T;
protocol: string;
user: string;
pass: string;
@@ -14,5 +15,5 @@ declare class Url {
path: string;
hash: string;
href: string;
toString(): string;
toString: () => string;
}