LocalLm types documentation
    Preparing search index...

    Interface OnLoadProgressFull

    Represents the full progress of a load operation, including percentage.

    OnLoadProgressFull

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

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    loaded: number

    The number of items that have been loaded so far.

    percent: number

    The percentage of items that have been loaded so far.

    total: number

    The total number of items to load.