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) 171 B
import { Strapi } from '../../'; export type Service = { [key: string]: (...args: any) => any; }; export type ServiceFactory = ({ strapi: Strapi }) => Service;