diff --git a/src/infrastructure/Bundler.ts b/src/infrastructure/Bundler.ts index 90a71ced..c1a10b5e 100644 --- a/src/infrastructure/Bundler.ts +++ b/src/infrastructure/Bundler.ts @@ -3,7 +3,7 @@ import { BaseModelContructorOptions } from './BaseService'; function Bundler( services: T, -): new (...args: any[]) => { [K in keyof T]: InstanceType } { +): new (baseOptions: BaseModelContructorOptions) => { [K in keyof T]: InstanceType } { const combined = { ...services as object } as T; interface BundleClass { [K: string]: BaseService;