UNPKG

n8n

Version:

n8n Workflow Automation Tool

10 lines (9 loc) 293 B
import type { ICredentialDataDecryptedObject } from 'n8n-workflow'; import type { ResourceOwner } from './resourceOwner'; export interface ExportableCredential { id: string; name: string; type: string; data: ICredentialDataDecryptedObject; ownedBy: ResourceOwner | null; }