Add standalone type definitions

This commit is contained in:
Mitchell McCaffrey
2021-07-08 12:01:02 +10:00
parent 123ebd880a
commit 45a4443dd1
17 changed files with 388 additions and 0 deletions

3
src/types/PartyState.ts Normal file
View File

@@ -0,0 +1,3 @@
import { PlayerState } from "./PlayerState";
export type PartyState = Record<string, PlayerState>;