21 lines
736 B
TypeScript
21 lines
736 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 { groupTagSchema } from './group-tag';
|
|
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 { GroupTag } from './group-tag';
|
|
export type { Relationship } from './relationship';
|