@promptbook/google
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
12 lines (11 loc) • 432 B
TypeScript
import type { AutomaticTranslator } from './AutomaticTranslator';
/**
* This will wrap an automatic translator and log each translation into the console
*
* @private still in development [🏳]
*/
export declare class DebugAutomaticTranslator implements AutomaticTranslator {
private readonly automaticTranslator;
constructor(automaticTranslator: AutomaticTranslator);
translate(message: string): Promise<string>;
}