Skip to content

Commit

Permalink
fix: ignore ts
Browse files Browse the repository at this point in the history
  • Loading branch information
asafgardin committed Dec 4, 2024
1 parent 09be7a4 commit d24dc65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/files/NodeFilesHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ export class NodeFilesHandler extends BaseFilesHandler {
});
}

// eslint-disable-next-line @typescript-eslint/no-explicit-any
private async handleStringFile(filePath: string, formData: any): Promise<void> {
// eslint-disable-line @typescript-eslint/no-explicit-any
if (!isNode) {
throw new Error('File system operations are not supported in browser environment');
}
Expand Down Expand Up @@ -74,8 +74,8 @@ export class NodeFilesHandler extends BaseFilesHandler {
}
}

// eslint-disable-next-line @typescript-eslint/no-explicit-any
private createFormDataResponse(formData: any): FormDataRequest {
// eslint-disable-line @typescript-eslint/no-explicit-any
return {
formData,
headers: {
Expand Down

0 comments on commit d24dc65

Please sign in to comment.