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

16
node_modules/@nestjs/core/repl/repl.interfaces.d.ts generated vendored Normal file
View File

@@ -0,0 +1,16 @@
import type { ReplContext } from './repl-context';
import type { ReplFunction } from './repl-function';
export type ReplFnDefinition = {
/** Function's name. Note that this should be a valid JavaScript function name. */
name: string;
/** Alternative names to the function. */
aliases?: ReplFnDefinition['name'][];
/** Function's description to display when `<function>.help` is entered. */
description: string;
/**
* Function's signature following TypeScript _function type expression_ syntax.
* @example '(token: InjectionToken) => any'
*/
signature: string;
};
export type ReplFunctionClass = new (replContext: ReplContext) => ReplFunction;