Mats Klein
init ChatGPTFirewall
8086ffb
raw
history blame contribute delete
257 Bytes
import { User } from './User';
export type File = {
id?: string;
filename: string;
user?: User;
lang?: string;
fileSize: number;
uploadedAt?: Date;
isUploading?: boolean;
};
export type FileResponse = {
error?: string;
files: File[];
};