Type Alias AccountDetails

AccountDetails: {
    bgColor: string;
    icon: string;
    id: string;
    loggedIn: boolean;
    name: string;
    packageName: string;
    username?: string;
}

Details of an account connected to the system

Type declaration

  • bgColor: string

    Background color for UI elements

  • icon: string

    Icon for the account

  • id: string

    Unique identifier for the account

  • loggedIn: boolean

    Whether the user is logged in

  • name: string

    Display name for the account

  • packageName: string

    Package name of the extension

  • Optionalusername?: string

    Username of the logged in user