sportradar-api-client
Version:
Node and NestJS wrappers for Sportradar feeds
30 lines (29 loc) • 601 B
TypeScript
export declare class SportradarConfigService {
private readonly config;
constructor(config: {
mlb: {
basePath: string;
apiKey: string;
};
nba: {
basePath: string;
apiKey: string;
};
nfl: {
basePath: string;
apiKey: string;
};
});
getMlbConfig(): {
basePath: string;
apiKey: string;
};
getNbaConfig(): {
basePath: string;
apiKey: string;
};
getNflConfig(): {
basePath: string;
apiKey: string;
};
}