Fix exporting of types

develop^2
Chewbacca 2023-03-14 13:10:00 -04:00
rodzic 6ac57910bf
commit 3ca168dc8c
1 zmienionych plików z 6 dodań i 3 usunięć

Wyświetl plik

@ -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';