Merge branch 'fix-export' into 'develop'

Fix exporting of types

See merge request soapbox-pub/soapbox!2347
develop^2
Chewbacca 2023-03-14 17:50:06 +00:00
commit 7e74e215cc
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';