21 lines
No EOL
1.2 KiB
TypeScript
21 lines
No EOL
1.2 KiB
TypeScript
export { accountSchema, type Account } from './account';
|
|
export { attachmentSchema, type Attachment } from './attachment';
|
|
export { cardSchema, type Card } from './card';
|
|
export { chatMessageSchema, type ChatMessage } from './chat-message';
|
|
export { customEmojiSchema, type CustomEmoji } from './custom-emoji';
|
|
export { emojiReactionSchema, type EmojiReaction } from './emoji-reaction';
|
|
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';
|
|
export { mentionSchema, type Mention } from './mention';
|
|
export { notificationSchema, type Notification } from './notification';
|
|
export { patronUserSchema, type PatronUser } from './patron';
|
|
export { pollSchema, type Poll, type PollOption } from './poll';
|
|
export { relationshipSchema, type Relationship } from './relationship';
|
|
export { statusSchema, type Status } from './status';
|
|
export { tagSchema, type Tag } from './tag';
|
|
export { tombstoneSchema, type Tombstone } from './tombstone';
|
|
|
|
// Soapbox
|
|
export { adSchema, type Ad } from './soapbox/ad'; |