/* 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;
}
