UNPKG

auto-translatr

Version:
12 lines (11 loc) 264 B
export interface OpenAIResponse { choices: Array<{ message: { content: string; }; }>; error?: { message: string; }; } export declare function prompt(text: string, model: string, apiKey: string): Promise<string>;