UNPKG

@chubbyts/chubbyts-api

Version:

[![CI](https://github.com/chubbyts/chubbyts-api/workflows/CI/badge.svg?branch=master)](https://github.com/chubbyts/chubbyts-api/actions?query=workflow%3ACI) [![Coverage Status](https://coveralls.io/repos/github/chubbyts/chubbyts-api/badge.svg?branch=maste

9 lines (8 loc) 708 B
import type { Handler } from '@chubbyts/chubbyts-http-types/dist/handler'; import type { ResponseFactory } from '@chubbyts/chubbyts-http-types/dist/message-factory'; import type { ZodType } from 'zod'; import type { Encoder } from '@chubbyts/chubbyts-decode-encode/dist/encoder'; import type { Decoder } from '@chubbyts/chubbyts-decode-encode/dist/decoder'; import type { PersistModel } from '../repository.js'; import type { EnrichModel } from '../model.js'; export declare const createCreateHandler: <C>(decoder: Decoder, modelRequestSchema: ZodType, persistModel: PersistModel<C>, responseFactory: ResponseFactory, modelResponseSchema: ZodType, encoder: Encoder, enrichModel?: EnrichModel<C>) => Handler;