Commit b6f25a5

Anton Medvedev <anton@medv.io>
2024-11-29 14:12:22
Fix reactions.ts
1 parent 8bbfcbb
Changed files (2)
badges
reactions
src
badges/reactions/reactions.ts
@@ -1,5 +1,4 @@
-import { define } from '#src'
-import { Reactions } from '../../src/task/user-comments/comments.graphql.js'
+import { define, Reactions } from '#src'
 
 export default define({
   url: import.meta.url,
src/index.ts
@@ -4,5 +4,6 @@ export { User } from './task/user/user.graphql.js'
 export { Issue } from './task/issues/issues.graphql.js'
 export { PullRequest } from './task/pulls/pulls.graphql.js'
 export { Commit } from './task/commits/commits.graphql.js'
+export { Reactions } from './task/comments/comments.graphql.js'
 
 export { linkCommit, linkIssue, linkPull, latest, plural } from './utils.js'