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

8 lines (5 loc) 180 B
import { Strapi } from '../../'; export type Controller = { [key: string]: (...args: any) => any; }; export type ControllerFactory = ({ strapi: Strapi }) => Controller;