-
Notifications
You must be signed in to change notification settings - Fork 538
Open
Labels
auth-jsRelated to the auth-js library.Related to the auth-js library.bugSomething isn't workingSomething isn't working
Description
Current typing
export interface UserAppMetadata {
provider?: string
[key: string]: any
}Should be (could be)
type AuthProvider = Provider & ("email" | (string & {})); // needs more work here
export interface UserAppMetadata {
provider?: AuthProvider // assign a type
providers?: AuthProvider[] // define a field
[key: string]: any
}Metadata
Metadata
Assignees
Labels
auth-jsRelated to the auth-js library.Related to the auth-js library.bugSomething isn't workingSomething isn't working