// frontend/src/types.ts export interface Titular { id: number; texto: string; urlFuente: string | null; modificadoPorUsuario: boolean; esEntradaManual: boolean; ordenVisual: number; fechaCreacion: string; tipo: 'Scraped' | 'Edited' | 'Manual' | null; fuente: string | null; }