How to use the fp-ts-contrib/lib/List.nil function in fp-ts-contrib

To help you get started, we’ve selected a few fp-ts-contrib examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github DenisFrezzato / hyper-ts-fastify / src / index.ts View on Github external
constructor(
    readonly req: fastify.FastifyRequest,
    readonly reply: fastify.FastifyReply,
    readonly actions: LL.List = LL.nil,
    readonly ended: boolean = false,
  ) {}
  public chain(action: Action, ended: boolean = false): FastifyConnection {