2025-10-28 11:45:51 -03:00
|
|
|
// 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;
|
2025-10-28 12:56:42 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface Configuracion {
|
|
|
|
|
rutaCsv: string;
|
|
|
|
|
intervaloMinutos: number;
|
|
|
|
|
cantidadTitularesAScrapear: number;
|
|
|
|
|
limiteTotalEnDb: number;
|
2025-10-28 11:45:51 -03:00
|
|
|
}
|