TravBot-v3/src/defs/translate.d.ts

10 lines
213 B
TypeScript

interface TranslateOptions {
from?: string;
to?: string;
}
declare module "translate-google" {
function translate(input: string, options: TranslateOptions): Promise<string>;
export = translate;
}