Gets the name of a number, even if it's stupidly big. Supersedes TheoryOfNekomata/number-name.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

12 line
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. };