Fix exporting of types

This commit is contained in:
Chewbacca 2023-03-14 13:10:00 -04:00
parent 6ac57910bf
commit 3ca168dc8c

View file

@ -1,3 +1,6 @@
export { customEmojiSchema, CustomEmoji } from './custom-emoji';
export { groupSchema, Group } from './group';
export { groupRelationshipSchema, GroupRelationship } from './group-relationship';
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';