import { Addon } from '../../aop'; import { Dictionary } from '../../base'; import { Service } from '../../server/base'; export declare class CustomMethod extends Addon { sourceCode?: string; } export declare class CustomService extends Service { methods?: Dictionary; [index: string]: any; /** * 服务初始化 */ initialize?: (() => void) | undefined; }