f1-api-node
Advanced tools
Comparing version
@@ -11,2 +11,4 @@ interface staticLinks { | ||
constructorStandings_2: string; | ||
results_1: string; | ||
results_2: string; | ||
} | ||
@@ -13,0 +15,0 @@ export declare const staticLinks: staticLinks; |
@@ -14,3 +14,5 @@ "use strict"; | ||
constructorStandings_2: "team.html", | ||
results_1: "https://www.formula1.com/en/results.html", | ||
results_2: "races.html", | ||
}; | ||
//# sourceMappingURL=endpoints.js.map |
@@ -1,2 +0,2 @@ | ||
import { constructorStanding } from "../types/types"; | ||
export declare const getConstructorStandings: (year?: number) => Promise<constructorStanding[]>; | ||
import { isConstructorStanding } from "../types/types"; | ||
export declare const getConstructorStandings: (year?: number) => Promise<isConstructorStanding[]>; |
@@ -1,2 +0,2 @@ | ||
import { drivers } from "../types/types"; | ||
export declare const getDriverData: () => Promise<drivers[]>; | ||
import { isDriver } from "../types/types"; | ||
export declare const getDriverData: () => Promise<isDriver[]>; |
@@ -1,2 +0,2 @@ | ||
import { driverStanding } from "../types/types"; | ||
export declare const getDriverStandings: (year?: number) => Promise<driverStanding[]>; | ||
import { isDriverStanding } from "../types/types"; | ||
export declare const getDriverStandings: (year?: number) => Promise<isDriverStanding[]>; |
@@ -1,2 +0,2 @@ | ||
import { teams } from "../types/types"; | ||
export declare const getTeamsData: () => Promise<teams[]>; | ||
import { isTeam } from "../types/types"; | ||
export declare const getTeamsData: () => Promise<isTeam[]>; |
@@ -1,2 +0,2 @@ | ||
import { hallOfFame } from "../types/types"; | ||
export declare const getWorldChampions: () => Promise<hallOfFame[]>; | ||
import { isHallOfFame } from "../types/types"; | ||
export declare const getWorldChampions: () => Promise<isHallOfFame[]>; |
@@ -6,1 +6,2 @@ export { getDriverData } from "./scraper/driver-data"; | ||
export { getWorldChampions } from "./scraper/world-champions"; | ||
export { getRaceResults } from "./scraper/race-results"; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.getWorldChampions = exports.getConstructorStandings = exports.getDriverStandings = exports.getTeamsData = exports.getDriverData = void 0; | ||
exports.getRaceResults = exports.getWorldChampions = exports.getConstructorStandings = exports.getDriverStandings = exports.getTeamsData = exports.getDriverData = void 0; | ||
var driver_data_1 = require("./scraper/driver-data"); | ||
@@ -14,2 +14,4 @@ Object.defineProperty(exports, "getDriverData", { enumerable: true, get: function () { return driver_data_1.getDriverData; } }); | ||
Object.defineProperty(exports, "getWorldChampions", { enumerable: true, get: function () { return world_champions_1.getWorldChampions; } }); | ||
var race_results_1 = require("./scraper/race-results"); | ||
Object.defineProperty(exports, "getRaceResults", { enumerable: true, get: function () { return race_results_1.getRaceResults; } }); | ||
//# sourceMappingURL=server.js.map |
@@ -1,2 +0,2 @@ | ||
export declare type constructorStanding = { | ||
export type isConstructorStanding = { | ||
position: number; | ||
@@ -6,3 +6,3 @@ team: string; | ||
}; | ||
export declare type drivers = { | ||
export type isDriver = { | ||
name: string; | ||
@@ -15,3 +15,3 @@ team: string; | ||
}; | ||
export declare type driverStanding = { | ||
export type isDriverStanding = { | ||
position: number; | ||
@@ -23,3 +23,3 @@ driver: string; | ||
}; | ||
export declare type teams = { | ||
export type isTeam = { | ||
name: string; | ||
@@ -32,5 +32,13 @@ drivers: string[]; | ||
}; | ||
export declare type hallOfFame = { | ||
export type isHallOfFame = { | ||
name: string; | ||
years: number[]; | ||
}; | ||
export type isRaceResult = { | ||
grandPrix: string; | ||
date: Date; | ||
winner: string; | ||
car: string; | ||
laps: number; | ||
time: string; | ||
}; |
{ | ||
"name": "f1-api-node", | ||
"version": "0.1.2", | ||
"version": "0.2.0", | ||
"description": "A simple library written in typescript to fetch Formula-1 data", | ||
@@ -33,3 +33,3 @@ "main": "dist/server.js", | ||
"license": "GPL-3.0", | ||
"bugs":"https://github.com/yashkathe/F1-API/issues", | ||
"bugs": "https://github.com/yashkathe/F1-API/issues", | ||
"devDependencies": { | ||
@@ -36,0 +36,0 @@ "@types/cheerio": "^0.22.31", |
@@ -36,2 +36,6 @@ # Formula1 API | ||
- **getRaceResults** | ||
Fetch race results for all the grand prix in a given year. | ||
The function takes one argument: The year from which you want to extract race results. | ||
## Snapshots | ||
@@ -38,0 +42,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
70712
8.67%33
22.22%423
20.17%66
6.45%