Skip to content

Commit d24dc65

Browse files
committed
fix: ignore ts
1 parent 09be7a4 commit d24dc65

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/files/NodeFilesHandler.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ export class NodeFilesHandler extends BaseFilesHandler {
2020
});
2121
}
2222

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

77+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
7778
private createFormDataResponse(formData: any): FormDataRequest {
78-
// eslint-disable-line @typescript-eslint/no-explicit-any
7979
return {
8080
formData,
8181
headers: {

0 commit comments

Comments
 (0)