export interface Team { name: string; color: string; } export interface Driver { firstName: string; lastName: string; abbreviation: string; } export interface Track { name: string; } export declare type EventCode = string; export interface Coordinate { x: number; y: number; } export interface Tyre { color: string; name: string; } export declare type Packet = string; export declare type PacketSize = number; export interface SessionTypes { short: string; long: string; }