Return type fix

This commit is contained in:
John Grimsey
2015-12-17 11:42:08 +00:00
parent 074521c80e
commit 331d30c38c

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;
}