Last active
October 1, 2019 12:11
-
-
Save Richienb/7cf631a815ca8efc28a03203f00104c5 to your computer and use it in GitHub Desktop.
DevBed scoreboard typings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| interface ObjectivePlayer { | |
| [player: string]: number | |
| } | |
| interface Objective { | |
| id: string, | |
| name?: string, | |
| display?: "list" | "sidebar" | "belowName", | |
| players?: ObjectivePlayer | |
| } | |
| type Objectives = Objective[] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment