Type Alias AccountLoginStorage<T>

AccountLoginStorage<T>: LoginStorage<T & {
    account: unknown;
}>

A LoginStorage with specific typings to ensure other types can reference account IDs without actually needing to specify it explicitly in their storage type.

Type Parameters