UNPKG

ste-core

Version:
16 lines (15 loc) 322 B
/** * 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; }