We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6908863 commit d9ebc24Copy full SHA for d9ebc24
src/lib/clients/http_client.ts
@@ -113,7 +113,7 @@ export abstract class ContestSiteApiClient {
113
* @property {(data: T) => boolean} [validateResponse] - Optional function to validate the API response data.
114
*/
115
export type FetchAPIConfig<T> = {
116
- baseApiUrl: string;
+ baseApiUrl?: string; // (Deprecated) Use baseApiUrl in HttpRequestClient.
117
endpoint: string;
118
errorMessage: string;
119
validateResponse?: (data: T) => boolean;
0 commit comments