vn-verdnaturachat/app/definitions/IUpload.ts

18 lines
323 B
TypeScript

import Model from '@nozbe/watermelondb/Model';
export interface IUpload {
id?: string;
rid?: string;
path: string;
name?: string;
description?: string;
size: number;
type?: string;
store?: string;
progress?: number;
error?: boolean;
subscription?: { id: string };
}
export type TUploadModel = IUpload & Model;