@chubbyts/chubbyts-api
Version:
[](https://github.com/chubbyts/chubbyts-api/actions?query=workflow%3ACI) [ • 388 B
TypeScript
import type { Handler } from '@chubbyts/chubbyts-http-types/dist/handler';
import type { ResponseFactory } from '@chubbyts/chubbyts-http-types/dist/message-factory';
import type { FindModelById, RemoveModel } from '../repository.js';
export declare const createDeleteHandler: <C>(findModelById: FindModelById<C>, removeModel: RemoveModel<C>, responseFactory: ResponseFactory) => Handler;