QueryProgressCallback
Type aliasQueryProgressCallback: (progress: number, result: QueryResult) => void
The type of the callback function when querying all records or loading all records. The method can be used to show the progress of the query or the load.
Type declaration
function(progress: number, result: QueryResult): void
Parameters
Parameter | Type |
---|---|
progress | number |
result | QueryResult |
Returns
void