UNPKG

n8n

Version:

n8n Workflow Automation Tool

11 lines (10 loc) 287 B
import { User, WithTimestamps } from '@n8n/db'; import { OAuthClient } from './oauth-client.entity'; export declare class RefreshToken extends WithTimestamps { token: string; client: OAuthClient; clientId: string; user: User; userId: string; expiresAt: number; }