bigbuffet-rw/app/soapbox/schemas/index.ts

14 lines
764 B
TypeScript
Raw Normal View History

2023-05-02 16:30:21 -07:00
export { accountSchema, type Account } from './account';
export { cardSchema, type Card } from './card';
export { customEmojiSchema, type CustomEmoji } from './custom-emoji';
2023-05-02 17:11:17 -07:00
export { emojiReactionSchema, type EmojiReaction } from './emoji-reaction';
2023-05-02 16:30:21 -07:00
export { groupSchema, type Group } from './group';
export { groupMemberSchema, type GroupMember } from './group-member';
export { groupRelationshipSchema, type GroupRelationship } from './group-relationship';
export { groupTagSchema, type GroupTag } from './group-tag';
2023-05-03 10:52:36 -07:00
export { pollSchema, type Poll, type PollOption } from './poll';
2023-05-02 16:30:21 -07:00
export { relationshipSchema, type Relationship } from './relationship';
2023-05-03 11:40:30 -07:00
export { tagSchema, type Tag } from './tag';
2023-03-14 11:44:48 -07:00
2023-05-02 16:30:21 -07:00
// Soapbox
export { adSchema, type Ad } from './soapbox/ad';