Repository URL to install this package:
|
Version:
7.0.10 ▾
|
import { ContextId } from '../../injector';
import { ParamProperties } from '../context-utils';
declare type ParamPropertiesWithMetatype<T = any> = ParamProperties & {
metatype?: T;
};
export interface ExternalHandlerMetadata {
argsLength: number;
paramtypes: any[];
getParamsMetadata: (moduleKey: string, contextId?: ContextId, inquirerId?: string) => ParamPropertiesWithMetatype[];
}
export {};