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>
9 lines
327 B
TypeScript
9 lines
327 B
TypeScript
export declare class InvalidDecoratorItemException extends Error {
|
|
private readonly msg;
|
|
constructor(decorator: string, item: string, context: string);
|
|
what(): string;
|
|
}
|
|
export declare function validateEach(context: {
|
|
name: string;
|
|
}, arr: any[], predicate: Function, decorator: string, item: string): boolean;
|