GitHubAuthProviderEmail
Summary
Email records returned by GitHub's /user/emails endpoint.
Signature
interface GitHubAuthProviderEmail {
email: string;
primary: boolean;
verified: boolean;
visibility?: string | null;
}
Properties
Email address returned by the /user/emails endpoint.
primary
Indicates whether this email is the primary address.
verified
Indicates whether GitHub has verified this email address.
visibility
GitHub visibility setting for the email address, when available.