mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
13 lines
405 B
TypeScript
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;
|