15 lines
313 B
TypeScript
15 lines
313 B
TypeScript
import { Metadata } from "../types/metadata";
|
|
import { PlayerScore } from "../score/player-score";
|
|
|
|
export default interface PlayerScoresResponse<S, L> {
|
|
/**
|
|
* The scores that were set.
|
|
*/
|
|
readonly scores: PlayerScore<S, L>[];
|
|
|
|
/**
|
|
* The pagination metadata.
|
|
*/
|
|
readonly metadata: Metadata;
|
|
}
|