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>
12 lines
566 B
TypeScript
12 lines
566 B
TypeScript
/**
|
|
* Injection tokens
|
|
*/
|
|
export declare const CONFIGURATION_SERVICE_TOKEN: unique symbol;
|
|
export declare const CONFIGURATION_TOKEN = "CONFIGURATION_TOKEN";
|
|
export declare const CONFIGURATION_LOADER = "CONFIGURATION_LOADER";
|
|
export declare const VALIDATED_ENV_LOADER = "VALIDATED_ENV_LOADER";
|
|
export declare const PARTIAL_CONFIGURATION_KEY = "PARTIAL_CONFIGURATION_KEY";
|
|
export declare const PARTIAL_CONFIGURATION_PROPNAME = "KEY";
|
|
export declare const VALIDATED_ENV_PROPNAME = "_PROCESS_ENV_VALIDATED";
|
|
export declare const AS_PROVIDER_METHOD_KEY = "asProvider";
|