vim-webgl-component
Version:
A demonstration app built on top of the vim-webgl-viewer
16 lines (15 loc) • 322 B
TypeScript
/**
* Indicates the object support a propagation status.
*
* @export
* @interface IPropagationStatus
*/
export interface IPropagationStatus {
/**
* Indicates if the propagation was stopped.
*
* @type {boolean}
* @memberOf IPropagationStatus
*/
readonly propagationStopped: boolean;
}