column-changes.service.d.ts 309 B

12345678910
  1. import { Observable } from 'rxjs';
  2. /**
  3. * service to make DatatableComponent aware of changes to
  4. * input bindings of DataTableColumnDirective
  5. */
  6. export declare class ColumnChangesService {
  7. private columnInputChanges;
  8. readonly columnInputChanges$: Observable<undefined>;
  9. onInputChange(): void;
  10. }