opacity-strategy.d.ts 634 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 { QueryList } from '@angular/core';
  6. import { Observable } from 'rxjs';
  7. import { NzCarouselContentDirective } from '../carousel-content.directive';
  8. import { NzCarouselBaseStrategy } from './base-strategy';
  9. export declare class NzCarouselOpacityStrategy extends NzCarouselBaseStrategy {
  10. withCarouselContents(contents: QueryList<NzCarouselContentDirective> | null): void;
  11. switch(_f: number, _t: number): Observable<void>;
  12. dispose(): void;
  13. }