formcycle 8.3.6 - JavaScript for forms
    Preparing search index...

    Interface UploadStateEntry<K, V>

    Describes a state of an AJAX upload item. The data depends on the current key.

    interface UploadStateEntry<K extends string, V> {
        data: V;
        state: K;
    }

    Type Parameters

    • K extends string
    • V
    Index

    Properties

    Properties

    data: V

    The data of the current state.

    state: K

    The state of the upload item, either pending, success, failure, or pendingRemoval.