Skip to content

Instantly share code, notes, and snippets.

@Richienb
Last active October 1, 2019 12:11
Show Gist options
  • Select an option

  • Save Richienb/7cf631a815ca8efc28a03203f00104c5 to your computer and use it in GitHub Desktop.

Select an option

Save Richienb/7cf631a815ca8efc28a03203f00104c5 to your computer and use it in GitHub Desktop.
DevBed scoreboard typings
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