clashcrown-wraproyale
Version:
API Wrapper for official ClashRoyale API
21 lines (18 loc) • 305 B
text/typescript
/**
* The High and Low id which can be converted to a player tag
*/
export class HiLo {
public high: number;
public low: number;
constructor(high: number, low: number) {
this.high = high;
this.low = low;
}
}
/**
* A serialized HiLo
*/
export interface IHiLo {
high: number;
low: number;
}