googlethis-augmented
Version:
A fork of googlethis to get specific data for different needs.
15 lines (14 loc) • 361 B
TypeScript
export = Dictionary;
declare class Dictionary {
constructor($: any);
/** @type {string | null} */
word: string | null;
/** @type {string | null} */
phonetic: string | null;
/** @type {string | null} */
audio: string | null;
/** @type {string[]} */
definitions: string[];
/** @type {string[]} */
examples: string[];
}