@tsclean/core
Version:
Plugin for API Rest Full development, based on Clean Architecture, IoC and Dependency Injection.
12 lines • 470 B
TypeScript
import { ContextId } from '../core';
import { ParamProperties } from '../helpers/context-utils';
type ParamPropertiesWithMetaType<T = any> = ParamProperties & {
metaType?: T;
};
export interface ExternalHandlerMetadataInterface {
argsLength: number;
paramTypes: any[];
getParamsMetadata: (moduleKey: string, contextId?: ContextId, inquirerId?: string) => ParamPropertiesWithMetaType[];
}
export {};
//# sourceMappingURL=external-handler-metadata.d.ts.map