Skip to content

Commit 736961c

Browse files
committed
Fix types
1 parent 6e46682 commit 736961c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

transforms/no-implicit-this/helpers/plugin.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ export default function transform(root: AST.Node, { customHelpers, resolver }: O
1515
const scopedParams: string[] = [];
1616

1717
const paramTracker = {
18-
enter(node: { blockParams: any[] }) {
18+
enter(node: { blockParams: string[] }) {
1919
node.blockParams.forEach((param: string) => {
2020
scopedParams.push(param);
2121
});
2222
},
2323

24-
exit(node: { blockParams: any[] }) {
24+
exit(node: { blockParams: string[] }) {
2525
node.blockParams.forEach(() => {
2626
scopedParams.pop();
2727
});

0 commit comments

Comments
 (0)