UNPKG

n8n

Version:

n8n Workflow Automation Tool

11 lines (10 loc) 395 B
import { WithTimestamps } from './AbstractEntity'; import { User } from './User'; export type AuthProviderType = 'ldap' | 'email' | 'saml'; export declare class AuthIdentity extends WithTimestamps { userId: string; user: User; providerId: string; providerType: AuthProviderType; static create(user: User, providerId: string, providerType?: AuthProviderType): AuthIdentity; }