UNPKG

n8n

Version:

n8n Workflow Automation Tool

10 lines (9 loc) 345 B
import { type InstanceAiCredits } from '@n8n/api-types'; type ThreadCredits = { threadId: string; totalCreditsUsed: number; }; export declare function maskCreditsForDisplay(credits: InstanceAiCredits, activationCapped: boolean, creditsPerThread?: ThreadCredits): InstanceAiCredits & { creditsPerThread?: ThreadCredits; }; export {};