UNPKG

ng-zorro-antd

Version:

An enterprise-class UI components based on Ant Design and Angular

27 lines (26 loc) 999 B
/** * @license * Copyright Alibaba.com All Rights Reserved. * * 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 */ import { ElementRef, InjectionToken, NgZone, OnDestroy, OnInit } from '@angular/core'; export interface NzWaveConfig { disabled?: boolean; } export declare const NZ_WAVE_GLOBAL_DEFAULT_CONFIG: NzWaveConfig; export declare const NZ_WAVE_GLOBAL_CONFIG: InjectionToken<NzWaveConfig>; export declare function NZ_WAVE_GLOBAL_CONFIG_FACTORY(): NzWaveConfig; export declare class NzWaveDirective implements OnInit, OnDestroy { private ngZone; private elementRef; private animationType; nzWaveExtraNode: boolean; private waveRenderer; private waveDisabled; constructor(ngZone: NgZone, elementRef: ElementRef, config: NzWaveConfig, animationType: string); ngOnDestroy(): void; ngOnInit(): void; renderWaveIfEnabled(): void; }