UNPKG

n8n

Version:

n8n Workflow Automation Tool

10 lines (9 loc) 224 B
import { User } from '@n8n/db'; import { OAuthClient } from './oauth-client.entity'; export declare class AccessToken { token: string; client: OAuthClient; clientId: string; user: User; userId: string; }