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

17
node_modules/@nestjs/core/metadata-scanner.d.ts generated vendored Normal file
View File

@@ -0,0 +1,17 @@
import { Injectable } from '@nestjs/common/interfaces/injectable.interface';
export declare class MetadataScanner {
private readonly cachedScannedPrototypes;
/**
* @deprecated
* @see {@link getAllMethodNames}
* @see getAllMethodNames
*/
scanFromPrototype<T extends Injectable, R = any>(instance: T, prototype: object | null, callback: (name: string) => R): R[];
/**
* @deprecated
* @see {@link getAllMethodNames}
* @see getAllMethodNames
*/
getAllFilteredMethodNames(prototype: object): IterableIterator<string>;
getAllMethodNames(prototype: object | null): string[];
}