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

20 lines
645 B
TypeScript
Raw Normal View History

2023-03-14 11:44:48 -07:00
/**
* Schemas
*/
export { accountSchema } from './account';
2023-03-14 10:10:00 -07:00
export { customEmojiSchema } from './custom-emoji';
export { groupSchema } from './group';
2023-03-13 12:08:02 -07:00
export { groupMemberSchema } from './group-member';
2023-03-14 10:10:00 -07:00
export { groupRelationshipSchema } from './group-relationship';
export { relationshipSchema } from './relationship';
2023-03-14 11:44:48 -07:00
/**
* Entity Types
*/
export type { Account } from './account';
2023-03-14 11:44:48 -07:00
export type { CustomEmoji } from './custom-emoji';
export type { Group } from './group';
export type { GroupMember } from './group-member';
2023-03-14 10:10:00 -07:00
export type { GroupRelationship } from './group-relationship';
export type { Relationship } from './relationship';