deno-tex-tra
TexTra API Client for Deno.
import { TexTra } from "https://deno.land/x/tex_tra/tex_tra.ts";
const name = "your_name";
const key = "your_key";
const secret = "your_secret";
const texTra = new TexTra({ name, key, secret });
try {
const res = await texTra.translate("Hello", "mt", "generalNT_en_ja");
console.log(res.result?.text);
// => こんにちは
} catch (e) {
console.log(e);
}