19 lines
645 B
TypeScript
19 lines
645 B
TypeScript
/**
|
|
* Schemas
|
|
*/
|
|
export { accountSchema } from './account';
|
|
export { customEmojiSchema } from './custom-emoji';
|
|
export { groupSchema } from './group';
|
|
export { groupMemberSchema } from './group-member';
|
|
export { groupRelationshipSchema } from './group-relationship';
|
|
export { relationshipSchema } from './relationship';
|
|
|
|
/**
|
|
* Entity Types
|
|
*/
|
|
export type { Account } from './account';
|
|
export type { CustomEmoji } from './custom-emoji';
|
|
export type { Group } from './group';
|
|
export type { GroupMember } from './group-member';
|
|
export type { GroupRelationship } from './group-relationship';
|
|
export type { Relationship } from './relationship';
|