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

19 lines
1.1 KiB
TypeScript
Raw Normal View History

2023-05-02 16:30:21 -07:00
export { accountSchema, type Account } from './account';
2023-05-04 10:20:39 -07:00
export { attachmentSchema, type Attachment } from './attachment';
2023-05-02 16:30:21 -07:00
export { cardSchema, type Card } from './card';
2023-05-04 10:20:39 -07:00
export { chatMessageSchema, type ChatMessage } from './chat-message';
2023-05-02 16:30:21 -07:00
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-04 10:20:39 -07:00
export { mentionSchema, type Mention } from './mention';
export { notificationSchema, type Notification } from './notification';
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-04 10:20:39 -07:00
export { statusSchema, type Status } from './status';
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';