UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

12 lines (11 loc) • 405 B
import { ContextId } from '../../injector'; import { ParamProperties } from '../context-utils'; type ParamPropertiesWithMetatype<T = any> = ParamProperties & { metatype?: T; }; export interface ExternalHandlerMetadata { argsLength: number; paramtypes: any[]; getParamsMetadata: (moduleKey: string, contextId?: ContextId, inquirerId?: string) => ParamPropertiesWithMetatype[]; } export {};