interface AuthSignUpOutput<UserAttributeKey> {
    isSignUpComplete: boolean;
    nextStep: AuthNextSignUpStep<UserAttributeKey>;
    userId?: string;
}

Type Parameters

Properties

isSignUpComplete: boolean
userId?: string