Skip to content

Instantly share code, notes, and snippets.

@Klerith
Klerith / chat.interface.ts
Created March 11, 2025 17:54
Este es un archivo con información ficticia que simula un backend con latencia.
export enum Plan {
BASIC = 'basic',
PRO = 'pro',
PREMIUM = 'premium',
ENTERPRISE = 'enterprise',
}
export interface Client {
id: string; // C1-12345
name: string;