Gets the name of a number, even if it's stupidly big. Supersedes TheoryOfNekomata/number-name.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

10 行
184 B

  1. import { Cli, CliOptions } from './packages/cli-wrapper';
  2. export const createCli = (options: CliOptions) => {
  3. const cli = new Cli(options);
  4. // TODO setup CLI here
  5. return cli;
  6. };