UNPKG

cnf-backend-types

Version:

A package containing types for CNF Backend (and frontend?)

14 lines (12 loc) 295 B
/* eslint-disable semi */ export default interface ImportRaw { id: number; origin_file_path: string; raw_content: string; hash: string; decoded_content: unknown; decoded_hash: string; created_at: Date; updated_at: Date; import_run_id: number; }