Skip to content

Commit 68f1205

Browse files
committed
fix: 🚨 import Base for real instead of as a type-only import
this didn't even compile before, not sure how it got this way to begin with
1 parent df09ffc commit 68f1205

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/structures/Message.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import type { APIChatMessage, APIGroupMessage, DeleteGroupMessageResponse } from 'groupme-api-types'
2-
import type { Attachment, Channel, Client, Base, User } from '..'
2+
import type { Attachment, Channel, Client, User } from '..'
3+
import { Base } from '..'
34

45
interface MessageInterface<T extends Channel> {
56
fetch(): Promise<this>

0 commit comments

Comments
 (0)