Skip to content

Commit 2afd38a

Browse files
committed
Fixing eslint error in tests
1 parent 1cfb9a4 commit 2afd38a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/typescript/handler.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
import { hi } from "@my-org/some-lib/index";
22
import { merhaba } from "./tsx/import";
33

4+
/* eslint-disable no-unused-vars */
45
export const typescript4Inject = <A extends []>(
56
fn: (str: string, ...args: A) => any
67
) => (...a: A) => fn("test", ...a);
8+
/* eslint-enable no-unused-vars */
79

810
export const hello = async (event: any) => {
911
return {

0 commit comments

Comments
 (0)