googlethis-augmented
Version:
A fork of googlethis to get specific data for different needs.
13 lines (12 loc) • 345 B
TypeScript
export = Translation;
declare class Translation {
constructor($: any);
/** @type {string | null} */
source_language: string | null;
/** @type {string | null} */
target_language: string | null;
/** @type {string | null} */
source_text: string | null;
/** @type {string | null} */
target_text: string | null;
}