@giro3d/giro3d
Version:
A JS/WebGL framework for 3D geospatial data visualization
16 lines • 532 B
TypeScript
/**
* Trait of objects that perform asynchronous operations.
*/
export default interface Progress {
/**
* Gets whether the object is currently performing an asynchronous operation.
*/
get loading(): boolean;
/**
* Returns the percentage of progress, in normalized value (i.e in the [0, 1] range), of the
* asynchronous operations that are scheduled to run on this object. 1 means that all operations
* have finished.
*/
get progress(): number;
}
//# sourceMappingURL=Progress.d.ts.map