File

projects/wms-framework/src/lib/baseframework/IActiveAware.ts

Description

Represents the activity changes in a object instance.

Index

Properties

Properties

IsActive
IsActive: boolean
Type : boolean

IsActive property

IsActiveChanged
IsActiveChanged: SubscriptionEvent<any>
Type : SubscriptionEvent<any>

Event trigerred when IsActive changes its value.

import { SubscriptionEvent } from '../utils/SubscriptionEvent';

/**
 * Represents the activity changes in a object instance.
 *
 * @export
 * @interface IActiveAware
 * @wInterface Microsoft.Practices.Prism.IActiveAware
 */
export interface IActiveAware {
  /**
   * IsActive property
   *
   * @type {boolean}
   * @memberof IActiveAware
   */
  IsActive: boolean;

  /**
   * Event trigerred when `IsActive` changes its value.
   *
   * @type {SubscriptionEvent<any>}
   * @memberof IActiveAware
   */
  IsActiveChanged: SubscriptionEvent<any>;
}

result-matching ""

    No results matching ""