itowns
Version:
A JS/WebGL framework for 3D geospatial data visualization
13 lines (12 loc) • 344 B
TypeScript
export default CancelledCommandException;
/**
* Custom error thrown when cancelling commands. Allows the caller to act differently if needed.
* @class
* @param {Command} command
*/
declare class CancelledCommandException {
constructor(command: any);
command: any;
isCancelledCommandException: boolean;
toString(): string;
}