LocalLm types documentation
    Preparing search index...

    Interface OnLoadProgressBasic

    Represents the basic progress of a load operation.

    OnLoadProgressBasic

    const onLoadProgress: OnLoadProgressBasic = {
    total: 100,
    loaded: 50
    };
    interface OnLoadProgressBasic {
        loaded: number;
        total: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    loaded: number

    The number of items that have been loaded so far.

    total: number

    The total number of items to load.