UNPKG

@digicms/cms

Version:

An open source headless CMS solution to create and manage your own API. It provides a powerful dashboard and features to make your life easier. Databases supported: MySQL, MariaDB, PostgreSQL, SQLite

6 lines (4 loc) 200 B
import { Strapi } from '../'; import { Middleware } from 'koa'; export type MiddlewareFactory = (config: any, ctx: { strapi: Strapi }) => Middleware | null; export type Middleware = Middleware;