vim-webgl-component
Version:
A demonstration app built on top of the vim-webgl-viewer
17 lines (16 loc) • 336 B
TypeScript
/**
* Indicates an error with dispatching.
*
* @export
* @class DispatchError
* @extends {Error}
*/
export declare class DispatchError extends Error {
/**
* Creates an instance of DispatchError.
* @param {string} message The message.
*
* @memberOf DispatchError
*/
constructor(message: string);
}