UNPKG

ufc-scraper

Version:

An API to scrape UFC fighter information, statistics, records, and rankings from UFC.com

7 lines (6 loc) 205 B
import { FighterInfo } from "./fighter_info"; import { FighterStats } from "./fighter_stats"; export interface Fighter { FighterInfo: FighterInfo | null; FighterStats: FighterStats | null; }