Skip to content

Commit 4d2678d

Browse files
committed
suppress linter error by allowing 'any' type for event and request body
1 parent fdd6959 commit 4d2678d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

platform/lib/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ export const sendTypeMap = {
167167
};
168168

169169
// Event object that persists throughout worfklow with observability after each step.
170+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
170171
export let $event: any;
171172

172173
export const END_NEEDLE = "__pd_end";
@@ -215,6 +216,7 @@ export const $sendConfigRuntimeTypeChecker = (function () {
215216

216217
export interface AxiosRequestConfig extends AxiosConfig {
217218
debug?: boolean;
219+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
218220
body?: any;
219221
returnFullResponse?: boolean;
220222
}

0 commit comments

Comments
 (0)