UNPKG

@microsoft/teams-js

Version:

Microsoft Client SDK for building app for Microsoft hosts

13 lines (12 loc) 297 B
/** * Represents a validated email. */ export declare class EmailAddress { /** Represents the input email address string */ private readonly val; constructor(val: string); /** * Retrieve the validated email address as a string. */ toString(): string; }