UNPKG

@jlenon7/zedjs

Version:

Riot API Library for NodeJS

23 lines (22 loc) 489 B
import { MatchParticipantFrameDto } from './match-participant-frame.dto'; import { MatchEventDto } from './match-event.dto'; export interface IParticipantFrames { [key: string]: MatchParticipantFrameDto; } /** * Match timeline frame */ export declare class MatchTimeLineFrameDto { /** * Timestamp */ timestamp: number; /** * Participant frames */ participantFrames: IParticipantFrames; /** * Events */ events: MatchEventDto[]; }