Type Alias LoginOutputType

LoginOutputType: {
    accountId: string;
    remember?: boolean;
}

Output type that is expected of handlers logging an account in.

Type declaration

  • accountId: string

    The ID of the account that logged in.

  • Optionalremember?: boolean

    If this account should be remembered or not. Setting this to undefined will keep the setting as it currently is.