ste-core
Version:
Core files for the Strongly Typed Events project.
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;
}