import { InternalTopicsAPI } from '../topics-plugin/simple-topics/model'; import { Services } from '../../types'; /** * ServicesApi Type */ export declare type InternalServicesApi = { servicePlugin: { callService: (service: string, nestedServicePath: Array, args: unknown) => Promise; branchServices: Services; }; }; export declare type PreviousContext = { _plugins?: { topicsPlugin?: InternalTopicsAPI; }; }; export declare type EnhancedContext = PreviousContext & { services: Services; _plugins: InternalServicesApi; };