mirror of
https://github.com/vkaelin/LeagueStats.git
synced 2026-03-25 12:57:28 +00:00
14 lines
310 B
TypeScript
14 lines
310 B
TypeScript
declare module '@ioc:Adonis/League' {
|
|
import { MatchReferenceDto } from 'App/Services/Jax/src/Endpoints/MatchlistEndpoint'
|
|
|
|
interface SummonerModel {
|
|
puuid: string,
|
|
matchList?: MatchReferenceDto[],
|
|
names?: SummonerNames[]
|
|
}
|
|
|
|
interface SummonerNames {
|
|
name: string,
|
|
date: Date
|
|
}
|
|
}
|