Type alias DirtyCheckParams<T>

DirtyCheckParams<T>: {
    clean?: ((head, current) => Observable<any>);
    comparator?: DirtyCheckComparator<Head<T>>;
    watchProperty?: keyof T | (keyof T)[];
}

Type Parameters

  • T = any

Type declaration

  • Optional clean?: ((head, current) => Observable<any>)
      • (head, current): Observable<any>
      • Parameters

        • head: Head<T>
        • current: Head<T>

        Returns Observable<any>

  • Optional comparator?: DirtyCheckComparator<Head<T>>
  • Optional watchProperty?: keyof T | (keyof T)[]

Generated using TypeDoc