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

10 lines
213 B
TypeScript
Raw Normal View History

2021-04-08 11:37:49 +00:00
interface TranslateOptions {
from?: string;
to?: string;
}
declare module "translate-google" {
function translate(input: string, options: TranslateOptions): Promise<string>;
export = translate;
}