UNPKG

n8n

Version:

n8n Workflow Automation Tool

16 lines (15 loc) 421 B
import { User, WithTimestamps } from '@n8n/db'; import { OAuthClient } from './oauth-client.entity'; export declare class AuthorizationCode extends WithTimestamps { code: string; client: OAuthClient; clientId: string; user: User; userId: string; redirectUri: string; codeChallenge: string; codeChallengeMethod: string; state: string | null; expiresAt: number; used: boolean; }