UNPKG

@llamaindex/ui

Version:

A comprehensive UI component library built with React, TypeScript, and Tailwind CSS for LlamaIndex applications

7 lines (6 loc) 152 B
export interface FileUploadProgress { file: File; progress: number; status: "uploading" | "completed" | "error" | "canceled"; error?: string; }