Represents the basic progress of a load operation.
OnLoadProgressBasic
The total number of items to load.
The number of items that have been loaded so far.
const onLoadProgress: OnLoadProgressBasic = { total: 100, loaded: 50}; Copy
const onLoadProgress: OnLoadProgressBasic = { total: 100, loaded: 50};
Represents the basic progress of a load operation.
OnLoadProgressBasic
Param: total
The total number of items to load.
Param: loaded
The number of items that have been loaded so far.
Example