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>
22 lines
602 B
TypeScript
22 lines
602 B
TypeScript
export declare const DECORATORS_PREFIX = "swagger";
|
|
export declare const DECORATORS: {
|
|
API_OPERATION: string;
|
|
API_RESPONSE: string;
|
|
API_PRODUCES: string;
|
|
API_CONSUMES: string;
|
|
API_TAGS: string;
|
|
API_CALLBACKS: string;
|
|
API_PARAMETERS: string;
|
|
API_HEADERS: string;
|
|
API_MODEL_PROPERTIES: string;
|
|
API_MODEL_PROPERTIES_ARRAY: string;
|
|
API_SECURITY: string;
|
|
API_EXCLUDE_ENDPOINT: string;
|
|
API_EXCLUDE_CONTROLLER: string;
|
|
API_EXTRA_MODELS: string;
|
|
API_EXTENSION: string;
|
|
API_SCHEMA: string;
|
|
API_DEFAULT_GETTER: string;
|
|
API_LINK: string;
|
|
};
|