UNPKG

iridium

Version:

A custom lightweight ORM for MongoDB designed for power-users

9 lines (8 loc) 204 B
import { Core } from "./Core"; /** * Middlewares provided by Iridium, such as the Express one, derive from this interface. * @internal */ export interface MiddlewareFactory<T> { (core: Core): T; }