1.1.3 • Published 6 months ago

@types/email-check v1.1.3

Weekly downloads
98
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/email-check

Summary

This package contains type definitions for email-check (https://github.com/pensierinmusica/email-check).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/email-check.

index.d.ts

// Type definitions for email-check 1.1
// Project: https://github.com/pensierinmusica/email-check
// Definitions by: Luke Jones <https://github.com/luke-j>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

declare namespace emailCheck {
    interface EmailCheckOptions {
        from?: string | undefined;
        host?: string | undefined;
        timeout?: number | undefined;
    }
}

declare function emailCheck(email: string, options?: emailCheck.EmailCheckOptions): Promise<boolean>;

export = emailCheck;

Additional Details

  • Last updated: Thu, 08 Jul 2021 12:01:06 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by Luke Jones.