Skip to content

Commit 88a9ed5

Browse files
committed
♻️ Refactor import statements in event.ts
1 parent 720fa4b commit 88a9ed5

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/server/webhooks/events/event.ts

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
1-
import { prEventKeys, type PrEvent } from "./pr/event.js"
2-
import { projectEventKeys, type ProjectEvent } from "./project/event.js"
3-
import { repoEventKeys, type RepoEvent } from "./repo/event.js"
1+
import type { PrEvent } from "./pr/event.js"
2+
import { prEventKeys } from "./pr/event.js"
3+
import type { ProjectEvent } from "./project/event.js"
4+
import { projectEventKeys } from "./project/event.js"
5+
import type { RepoEvent } from "./repo/event.js"
6+
import { repoEventKeys } from "./repo/event.js"
47

58
/**
69
* When you have a webhook with an event, Bitbucket Data Center sends the event

0 commit comments

Comments
 (0)