dashboard-react
    Preparing search index...

    Interface ChatUploadedFile

    User-selected file staged for chat upload before sending.

    interface ChatUploadedFile {
        id: string;
        name: string;
        type: string;
        size: number;
        file?: File;
        textContent?: string;
        preview?: string;
    }
    Index

    Properties

    id: string
    name: string
    type: string
    size: number
    file?: File

    Browser File preserved for local preprocessing before the message is sent.

    textContent?: string
    preview?: string