uefa-api
Version:
Typescript bindings and utils for the UEFA APIs
9 lines (8 loc) • 352 B
TypeScript
import type { Livescore } from '../api';
/**
* Fetches the current livescore from the API.
* This includes upcoming matches in the near time, live matches and recent matches from the last hours.
*
* @returns A promise that resolves with an array of the current livescores.
*/
export declare const getLivescore: () => Promise<Livescore[]>;