├── .gitignore ├── LICENSE ├── README.md ├── docs.md ├── docs ├── .nojekyll ├── assets │ ├── hierarchy.js │ ├── highlight.css │ ├── icons.js │ ├── icons.svg │ ├── main.js │ ├── navigation.js │ ├── search.js │ └── style.css ├── classes │ ├── Manager.html │ ├── Match.html │ ├── Player.html │ └── Tournament.html ├── hierarchy.html ├── index.html ├── interfaces │ ├── ExportedTournamentValues.html │ ├── LoadableTournamentValues.html │ ├── MatchValues.html │ ├── PlayerValues.html │ ├── SettableMatchValues.html │ ├── SettablePlayerValues.html │ ├── SettableTournamentValues.html │ ├── StandingsValues.html │ └── TournamentValues.html └── modules.html ├── package.json ├── src ├── components │ ├── Manager.ts │ ├── Match.ts │ ├── Player.ts │ ├── Tournament.ts │ └── index.ts ├── index.ts └── interfaces │ ├── ExportedTournamentValues.ts │ ├── LoadableTournamentValues.ts │ ├── MatchValues.ts │ ├── PlayerValues.ts │ ├── SettableMatchValues.ts │ ├── SettablePlayerValues.ts │ ├── SettableTournamentValues.ts │ ├── StandingsValues.ts │ ├── TournamentValues.ts │ └── index.ts ├── tsconfig.json └── typedoc.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | package-lock.json 4 | test.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/README.md -------------------------------------------------------------------------------- /docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/docs.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/docs/.nojekyll -------------------------------------------------------------------------------- /docs/assets/hierarchy.js: -------------------------------------------------------------------------------- 1 | window.hierarchyData = "eJyrVirKzy8pVrKKjtVRKkpNy0lNLsnMzytWsqqurQUAmx4Kpg==" -------------------------------------------------------------------------------- /docs/assets/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/docs/assets/highlight.css -------------------------------------------------------------------------------- /docs/assets/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/docs/assets/icons.js -------------------------------------------------------------------------------- /docs/assets/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/docs/assets/icons.svg -------------------------------------------------------------------------------- /docs/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/docs/assets/main.js -------------------------------------------------------------------------------- /docs/assets/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/docs/assets/navigation.js -------------------------------------------------------------------------------- /docs/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/docs/assets/search.js -------------------------------------------------------------------------------- /docs/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/docs/assets/style.css -------------------------------------------------------------------------------- /docs/classes/Manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/docs/classes/Manager.html -------------------------------------------------------------------------------- /docs/classes/Match.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/docs/classes/Match.html -------------------------------------------------------------------------------- /docs/classes/Player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/docs/classes/Player.html -------------------------------------------------------------------------------- /docs/classes/Tournament.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/docs/classes/Tournament.html -------------------------------------------------------------------------------- /docs/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/docs/hierarchy.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/interfaces/ExportedTournamentValues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/docs/interfaces/ExportedTournamentValues.html -------------------------------------------------------------------------------- /docs/interfaces/LoadableTournamentValues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/docs/interfaces/LoadableTournamentValues.html -------------------------------------------------------------------------------- /docs/interfaces/MatchValues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/docs/interfaces/MatchValues.html -------------------------------------------------------------------------------- /docs/interfaces/PlayerValues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/docs/interfaces/PlayerValues.html -------------------------------------------------------------------------------- /docs/interfaces/SettableMatchValues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/docs/interfaces/SettableMatchValues.html -------------------------------------------------------------------------------- /docs/interfaces/SettablePlayerValues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/docs/interfaces/SettablePlayerValues.html -------------------------------------------------------------------------------- /docs/interfaces/SettableTournamentValues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/docs/interfaces/SettableTournamentValues.html -------------------------------------------------------------------------------- /docs/interfaces/StandingsValues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/docs/interfaces/StandingsValues.html -------------------------------------------------------------------------------- /docs/interfaces/TournamentValues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/docs/interfaces/TournamentValues.html -------------------------------------------------------------------------------- /docs/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/docs/modules.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/package.json -------------------------------------------------------------------------------- /src/components/Manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/src/components/Manager.ts -------------------------------------------------------------------------------- /src/components/Match.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/src/components/Match.ts -------------------------------------------------------------------------------- /src/components/Player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/src/components/Player.ts -------------------------------------------------------------------------------- /src/components/Tournament.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/src/components/Tournament.ts -------------------------------------------------------------------------------- /src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/src/components/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interfaces/ExportedTournamentValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/src/interfaces/ExportedTournamentValues.ts -------------------------------------------------------------------------------- /src/interfaces/LoadableTournamentValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/src/interfaces/LoadableTournamentValues.ts -------------------------------------------------------------------------------- /src/interfaces/MatchValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/src/interfaces/MatchValues.ts -------------------------------------------------------------------------------- /src/interfaces/PlayerValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/src/interfaces/PlayerValues.ts -------------------------------------------------------------------------------- /src/interfaces/SettableMatchValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/src/interfaces/SettableMatchValues.ts -------------------------------------------------------------------------------- /src/interfaces/SettablePlayerValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/src/interfaces/SettablePlayerValues.ts -------------------------------------------------------------------------------- /src/interfaces/SettableTournamentValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/src/interfaces/SettableTournamentValues.ts -------------------------------------------------------------------------------- /src/interfaces/StandingsValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/src/interfaces/StandingsValues.ts -------------------------------------------------------------------------------- /src/interfaces/TournamentValues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/src/interfaces/TournamentValues.ts -------------------------------------------------------------------------------- /src/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/src/interfaces/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slashinfty/tournament-organizer/HEAD/typedoc.json --------------------------------------------------------------------------------