mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-15 22:39:40 +02:00
Applied formatting to 1487+ files using pnpm format:write - TypeScript/JavaScript files - Svelte components - Astro pages - JSON configs - Markdown docs 13 files still need manual review (Astro JSX comments)
18 lines
627 B
TypeScript
18 lines
627 B
TypeScript
// Tables
|
|
export { users, type User, type NewUser } from './users.js';
|
|
export { accounts, type Account, type NewAccount } from './accounts.js';
|
|
export { workspaces, type Workspace, type NewWorkspace } from './workspaces.js';
|
|
export { links, type Link, type NewLink } from './links.js';
|
|
export { clicks, type Click, type NewClick } from './clicks.js';
|
|
export { tags, linkTags, type Tag, type NewTag, type LinkTag, type NewLinkTag } from './tags.js';
|
|
|
|
// Relations
|
|
export {
|
|
usersRelations,
|
|
linksRelations,
|
|
clicksRelations,
|
|
tagsRelations,
|
|
linkTagsRelations,
|
|
accountsRelations,
|
|
workspacesRelations,
|
|
} from './relations.js';
|