Skip to content

Commit 4b9e07d

Browse files
committed
✏️ Replace void in union type with undefined (#1995)
1 parent 9a5c3e8 commit 4b9e07d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/clients/aizu_online_judge.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,12 +140,12 @@ export class AojApiClient extends ContestSiteApiClient {
140140
* @readonly
141141
* @property {Object[]} apiClients - Collection of tasks API clients
142142
* @property {string} apiClients[].label - Identifier for the API client
143-
* @property {TasksApiClient<void | ChallengeParams>} apiClients[].client - API client instance
143+
* @property {TasksApiClient<undefined | ChallengeParams>} apiClients[].client - API client instance
144144
* @property {ChallengeParams} [apiClients[].params] - Optional challenge parameters for the API client
145145
*/
146146
private readonly apiClients: {
147147
label: string;
148-
client: TasksApiClient<void | ChallengeParams>;
148+
client: TasksApiClient<undefined | ChallengeParams>;
149149
params?: ChallengeParams;
150150
}[];
151151

0 commit comments

Comments
 (0)