UNPKG

scheunemann-interfaces

Version:
8 lines (7 loc) 253 B
import { IChatGptUsage } from '../interfaces'; export declare class ChatGptUsageEntity implements IChatGptUsage { prompt_tokens: number; completion_tokens: number; total_tokens: number; constructor(data?: Partial<ChatGptUsageEntity>); }