Merge pull request #7243 from johngrimsey/master

Return type fix
This commit is contained in:
Horiuchi_H
2015-12-22 19:15:24 +09:00
+2 -2
View File
@@ -4,6 +4,6 @@
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare module "email-addresses" {
function parseOneAddress(opts: any): Object;
function parseAddressList(opts: any): Object;
function parseOneAddress(opts: any): any;
function parseAddressList(opts: any): any;
}