Skip to content

Commit 8a2f7c5

Browse files
committed
fix: 🩹 fix imports
keep type imports separate from "full" imports rather than converting all type-only imports
1 parent 425d0c0 commit 8a2f7c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/managers/MemberManager.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { APIMember, PostMemberRemoveResponse } from 'groupme-api-types'
2-
import { BaseGroup, Client, Collection } from '..'
3-
import { BaseManager, FormerMember, FormerMemberManager, FormerMemberState, Member } from '..'
2+
import type { BaseGroup, Client } from '..'
3+
import { BaseManager, Collection, FormerMember, FormerMemberManager, FormerMemberState, Member } from '..'
44

55
interface MemberManagerInterface {
66
add(id: string): Promise<Member>

0 commit comments

Comments
 (0)