hensei-web/src
Justin Edmund aa87ccb7d7 fix: Phase 6 - fix ImageVariant type export (37 -> 36 errors)
Fixed TypeScript error where ImageVariant type wasn't accessible in the
same file that re-exported it.

The issue: Re-exporting a type with `export type { X } from 'module'`
doesn't create a local binding that can be used in the same file.

The fix: Import the type first to create a local binding, then re-export it.

Changes:
- src/lib/features/database/detail/image.ts:
  - Added: import type { ResourceType, ImageVariant } from '$lib/utils/images'
  - Kept: export type { ResourceType as ResourceKind, ImageVariant }
  - This allows ImageVariant to be used in the ImageArgs interface below

Result: 37 → 36 errors (-1)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-28 19:52:02 -08:00
..
assets/icons add context menu ui components and i18n 2025-09-30 03:42:14 -07:00
lib fix: Phase 6 - fix ImageVariant type export (37 -> 36 errors) 2025-11-28 19:52:02 -08:00
routes fix: Phase 5 - fix environment variable imports (38 -> 37 errors) 2025-11-28 19:33:15 -08:00
themes add active unit highlighting with element focus rings 2025-11-28 11:04:04 -08:00
app.d.ts add auth store and update auth flow 2025-09-23 22:09:14 -07:00
app.html Init Svelte migration repo 2025-09-08 13:43:09 -07:00
app.scss update app styles 2025-09-25 00:26:50 -07:00
demo.spec.ts Init Svelte migration repo 2025-09-08 13:43:09 -07:00
hooks.server.ts add auth store and update auth flow 2025-09-23 22:09:14 -07:00
hooks.ts Init Svelte migration repo 2025-09-08 13:43:09 -07:00