remove redundant constructor

This commit is contained in:
Lucas Woo
2016-01-28 12:10:20 +08:00
parent 8284977a96
commit 5b84dddc7c
+1 -11
View File
@@ -180,21 +180,11 @@ declare module "ua-parser-js" {
* Returns parse result
*/
getResult(): UAParser.IResult;
/**
* Create a new parser
*/
constructor();
/**
* Create a new parser with UA prepopulated
*/
constructor(uastring: string);
/**
* Create a new parser with UA prepopulated and extensions extended
*/
constructor(uastring: string, extensions: any);
constructor(uastring?: string, extensions?: any);
}
}