import type { Core } from '@strapi/types'; import type { Services } from './services'; export const getService = ( name: TName, { strapi }: { strapi: Core.Strapi } = { strapi: global.strapi } ): Services[TName] => { return strapi.plugin('documentation').service(name); }; export default { getService, };