import type { Application } from '../../declarations'; import { CustomService } from './custom.class'; import { customPath } from './custom.shared'; export * from './custom.class'; export declare const custom: (app: Application) => void; declare module '../../declarations' { interface ServiceTypes { [customPath]: CustomService; } }