remix-auth-auth0
remix-auth-auth0 copied to clipboard
feat: Export Auth0UserInfo
This allows users to augment it with custom data.
I'm using it to augment type with metadata I'm returning.
declare module "remix-auth-auth0" {
interface Auth0UserInfo {
"https://my.prefix.domain/metadata"?: {
company_name?: string;
};
}
}