14 lines
419 B
TypeScript
14 lines
419 B
TypeScript
export type RefRow = {
|
|
documentos_id: string
|
|
titulo_archivo: string | null
|
|
descripcion: string | null
|
|
s3_file_path: string | null // Added this property to match the API requirements.
|
|
tipo_contenido: string | null
|
|
fecha_subida: string | null
|
|
procesado: boolean | null
|
|
tags: string[] | null
|
|
fuente_autoridad: string | null
|
|
interno: boolean | null
|
|
instrucciones: string
|
|
created_by: string | null
|
|
} |