From 3ca168dc8c8e43dab0eca17232095c1477229c84 Mon Sep 17 00:00:00 2001 From: Chewbacca Date: Tue, 14 Mar 2023 13:10:00 -0400 Subject: [PATCH] Fix exporting of types --- app/soapbox/schemas/index.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/app/soapbox/schemas/index.ts b/app/soapbox/schemas/index.ts index e05df212a..f89e714c1 100644 --- a/app/soapbox/schemas/index.ts +++ b/app/soapbox/schemas/index.ts @@ -1,3 +1,6 @@ -export { customEmojiSchema, CustomEmoji } from './custom-emoji'; -export { groupSchema, Group } from './group'; -export { groupRelationshipSchema, GroupRelationship } from './group-relationship'; \ No newline at end of file +export { customEmojiSchema } from './custom-emoji'; +export type { CustomEmoji } from './custom-emoji'; +export { groupSchema } from './group'; +export type { Group } from './group'; +export { groupRelationshipSchema } from './group-relationship'; +export type { GroupRelationship } from './group-relationship';