@karate-combat/api
Version:
Karate Combat API Client
7 lines • 584 B
TypeScript
import { FightEventDetailsDto, FightEventDto, FightEventResultsDto, FightEventsParams } from 'lib/src/fight-events/types';
declare function getFightEvent(id: string): Promise<FightEventDetailsDto>;
declare function getFightEventBySlug(slug: string): Promise<FightEventDetailsDto>;
declare function getFightEventResults(id: string): Promise<FightEventResultsDto>;
declare function getFightEvents(params?: Partial<FightEventsParams>): Promise<Array<FightEventDto>>;
export { getFightEvent, getFightEventBySlug, getFightEventResults, getFightEvents };
//# sourceMappingURL=index.d.ts.map