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>
15 lines
348 B
TypeScript
15 lines
348 B
TypeScript
export declare class Tenant {
|
|
id: string;
|
|
name: string;
|
|
slug: string;
|
|
domain: string | null;
|
|
logo_url: string | null;
|
|
status: string;
|
|
plan_id: string | null;
|
|
trial_ends_at: Date | null;
|
|
settings: Record<string, any> | null;
|
|
metadata: Record<string, any> | null;
|
|
created_at: Date;
|
|
updated_at: Date;
|
|
}
|