Skip to content

Commit

Permalink
Meh
Browse files Browse the repository at this point in the history
  • Loading branch information
lancegliser committed Jun 12, 2024
1 parent 806e349 commit 4ca3716
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/client/wasm/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -868,8 +868,13 @@ export class WasmClient extends BaseClient implements ITraineeClient, ISessionCl
* Preprocess a request for react or react series.
* @param trainee The trainee identifier.
* @param request The react request.
*
* Currently non-operational, but retained as a hook for future development
*/
private preprocessReactRequest(trainee: Trainee, request: ReactRequest | ReactSeriesRequest): void {}
private preprocessReactRequest(trainee: Trainee, request: ReactRequest | ReactSeriesRequest): void {
if (!trainee) {
throw new Error("trainee is undefined");
}
if (!request) {
throw new Error("request is undefined");
}
}
}

0 comments on commit 4ca3716

Please sign in to comment.