Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
// Classes
export { CactusLM } from './classes/CactusLM';
export { CactusImage } from './native/CactusImage';
Copy link

Copilot AI Nov 27, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The CactusImage export is placed under the "// Classes" comment, but it's actually a native module from the ./native/ directory. This should either be moved to a "// Native" section (similar to how there are separate sections for Classes, Hooks, Types, and Config) or placed under a more generic section name. This helps maintain clear organization of different module types in the public API.

Copilot uses AI. Check for mistakes.

// Hooks
export { useCactusLM } from './hooks/useCactusLM';
Expand Down