UNPKG

ng-tournament-tree

Version:

Tournament-Tree render components for Angular. Includes single- and double-elimination trees. You can also customize how a match is displayed by providing your own component.

12 lines (11 loc) 453 B
import { OnChanges, SimpleChanges, TemplateRef } from '@angular/core'; import { NgttRound, NgttTournament } from '../declarations/interfaces'; export declare class DoubleEliminationTreeComponent implements OnChanges { matchTemplate: TemplateRef<any>; tournament: NgttTournament; losersBracket: NgttRound[]; winnersBracket: NgttRound[]; final: NgttRound; constructor(); ngOnChanges(changes: SimpleChanges): void; }