graph.d.ts 531 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 { EventEmitter } from '@angular/core';
  6. import { NzGraphGroupNode, NzGraphNode } from './interface';
  7. /**
  8. * https://angular.io/errors/NG3003
  9. * An intermediate interface for {@link NzGraphComponent} & {@link NzGraphNodeComponent}
  10. */
  11. export declare abstract class NzGraph {
  12. abstract nzNodeClick: EventEmitter<NzGraphNode | NzGraphGroupNode>;
  13. }