UNPKG

183 BTypeScriptView Raw
1// good approximation of RFC 2822
2// http://www.regular-expressions.info/email.html
3declare function isEmail(email: string): boolean;
4
5declare namespace isEmail {}
6
7export = isEmail;