after-next-render.d.ts 632 B

12345678910111213
  1. /**
  2. * Use of this source code is governed by an MIT-style license that can be
  3. * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
  4. */
  5. import { InjectionToken } from '@angular/core';
  6. import { Observable } from 'rxjs';
  7. /**
  8. * An injection token representing `afterNextRender` as an observable rather
  9. * than a callback-based API has been added. This might be necessary in code
  10. * where streams of data are already being used and we need to wait until
  11. * the change detection ends before performing any tasks.
  12. */
  13. export declare const NZ_AFTER_NEXT_RENDER$: InjectionToken<Observable<void>>;