Initial commit - Event Planner application

This commit is contained in:
mberlin
2026-03-18 14:55:56 -03:00
commit 86d779eb4d
7548 changed files with 1006324 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
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 {};

View File

@@ -0,0 +1,2 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });

View File

@@ -0,0 +1,2 @@
export * from './external-handler-metadata.interface';
export * from './params-metadata.interface';

View File

@@ -0,0 +1,5 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
tslib_1.__exportStar(require("./external-handler-metadata.interface"), exports);
tslib_1.__exportStar(require("./params-metadata.interface"), exports);

View File

@@ -0,0 +1,6 @@
import { ParamData } from '@nestjs/common';
export type ParamsMetadata = Record<number, ParamMetadata>;
export interface ParamMetadata {
index: number;
data?: ParamData;
}

View File

@@ -0,0 +1,2 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });