Skip to content

Commit 59e7848

Browse files
committed
update the types
1 parent 8d6f0ce commit 59e7848

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/actions/find/src/pluginManager/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
import type {
1010
Plugin,
1111
PluginDefaultParams
12-
} from './types.d.js'
12+
} from './types.js'
1313

1414

1515
// Helper to get __dirname equivalent in ES Modules

.github/actions/find/src/pluginManager/types.d.ts renamed to .github/actions/find/src/pluginManager/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type {Finding} from './types.d.js'
22
import playwright from 'playwright'
33

4-
type PluginDefaultParams = {
4+
export type PluginDefaultParams = {
55
page: playwright.Page
66
addFinding: (findingData: Finding) => Promise<void>
77
}

0 commit comments

Comments
 (0)