formula1.js
Version:
Formula 1 Ergast API Wrapper
15 lines (14 loc) • 365 B
TypeScript
import { loosegp } from '../../Types';
import { GrandPrix } from './GrandPrix';
export declare class Circuit {
constructor(grandprix: GrandPrix, data: loosegp['Circuit']);
grandprix: GrandPrix;
name: string;
id: string;
location: {
latitude: number;
longitude: number;
locality: string;
country: string;
};
}