@jlenon7/zedjs
Version:
Riot API Library for NodeJS
24 lines (22 loc) • 450 B
text/typescript
import { MatchParticipantFrameDto } from './match-participant-frame.dto'
import { MatchEventDto } from './match-event.dto'
export interface IParticipantFrames {
[key: string]: MatchParticipantFrameDto
}
/**
* Match timeline frame
*/
export class MatchTimeLineFrameDto {
/**
* Timestamp
*/
timestamp: number
/**
* Participant frames
*/
participantFrames: IParticipantFrames
/**
* Events
*/
events: MatchEventDto[]
}