UNPKG

@n8n-plus/n8n-plus

Version:

n8n Workflow Automation Tool (plus edition)

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; }