UNPKG

@deeplx/cli

Version:

The cli for [`@deeplx/core`](https://github.com/un-ts/deeplx/blob/master/packages/@deeplx/core), a powerful and easy-to-use yet free DeepL API client for Node.js using [DeepL](https://www.deepl.com) by porting [OwO-Network/DeepLX](https://github.com/OwO-N

11 lines (10 loc) 269 B
#!/usr/bin/env node import './fetch.js'; import { type SourceLanguage, type TargetLanguage } from '@deeplx/core'; export interface DeepLXCliOptions { target: TargetLanguage; source?: SourceLanguage; text?: string; file?: string; formal?: boolean; }