ng-zorro-antd
Version:
An enterprise-class UI components based on Ant Design and Angular
18 lines (14 loc) • 662 B
TypeScript
import { InjectionToken } from '@angular/core';
import { Observable } from 'rxjs';
/**
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
*/
/**
* An injection token representing `afterNextRender` as an observable rather
* than a callback-based API has been added. This might be necessary in code
* where streams of data are already being used and we need to wait until
* the change detection ends before performing any tasks.
*/
declare const NZ_AFTER_NEXT_RENDER$: InjectionToken<Observable<void>>;
export { NZ_AFTER_NEXT_RENDER$ };