DefinitelyTyped/types/sane-email-validation/index.d.ts
2018-07-31 15:46:09 -07:00

13 lines
405 B
TypeScript

// Type definitions for sane-email-validation 1.1
// Project: https://github.com/scottgonzalez/sane-email-validation
// Definitions by: Forbes Lindesay <https://github.com/ForbesLindesay>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function isEmail(email: string): boolean;
declare namespace isEmail {
function isNotEmail(email: string): boolean;
}
export = isEmail;