12 lines
No EOL
271 B
TypeScript
12 lines
No EOL
271 B
TypeScript
import Slot from "../objects/Slot";
|
|
import User from "../objects/User";
|
|
import MatchScoreData from "./MatchScoreData";
|
|
|
|
export default interface PlayerScore {
|
|
player:User,
|
|
slot:Slot,
|
|
score:number,
|
|
isCurrentlyFailed:boolean,
|
|
hasFailed:boolean,
|
|
_raw?:MatchScoreData
|
|
} |