export interface Noticia { id: number titulo: string fecha: string | null contenido: string enlace: string | null } export interface ServerStatusData { server_name: string | null address: string | null expansion: string online_characters: number status: 'Online' | 'Offline' }