interface AuthSignInInput<ServiceOptions> {
    options?: ServiceOptions;
    password?: string;
    username: string;
}

Type Parameters

Properties

options?: ServiceOptions
password?: string
username: string