Profile Service Utils interface

interface IProfileServiceUtils {
    getUsernameFromEmailAndToken(token: string, email: string): Promise<string>;
}

Implemented by

Methods

  • Parameters

    • token: string
    • email: string

    Returns Promise<string>