Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
531 B
TypeScript
14 lines
531 B
TypeScript
/**
|
|
* Checks if the given packages are available and logs using the Nest Logger
|
|
* which packages are not available
|
|
* @param packageNames The package names
|
|
* @param reason The reason why these packages are important
|
|
*
|
|
* @internal
|
|
*
|
|
* @example
|
|
* // The "no_package" package is missing. Please, make sure to install the library ($ npm install no_package) to take advantage of TEST.
|
|
* checkPackages(['process', 'no_package'], 'TEST')
|
|
*/
|
|
export declare function checkPackages(packageNames: string[], reason: string): any[];
|