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>
13 lines
273 B
TypeScript
13 lines
273 B
TypeScript
export declare class Token {
|
|
id: string;
|
|
user_id: string;
|
|
tenant_id: string;
|
|
token_type: string;
|
|
token_hash: string;
|
|
expires_at: Date;
|
|
is_used: boolean;
|
|
used_at: Date | null;
|
|
metadata: Record<string, any> | null;
|
|
created_at: Date;
|
|
}
|