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

12 行
288 B

  1. import fastify, { FastifyServerOptions } from 'fastify';
  2. export interface CreateServerOptions extends FastifyServerOptions {}
  3. export const createServer = (options = {} as CreateServerOptions) => {
  4. const server = fastify(options);
  5. // TODO set up server stuff here
  6. return server;
  7. };