mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
- Add shallowEqual function with array-specific optimizations to MediaProvider - Export refEquality function for external use - Export shallowEqual from package index for consumers 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
16 lines
407 B
TypeScript
16 lines
407 B
TypeScript
// Re-export everything from MediaProvider - this is the primary implementation
|
|
export {
|
|
MediaProvider,
|
|
MediaContext,
|
|
useMediaStore,
|
|
useMediaDispatch,
|
|
useMediaRef,
|
|
useMediaSelector,
|
|
shallowEqual,
|
|
} from './MediaProvider.js';
|
|
|
|
// @ts-ignore - Placeholder types until media-store exports are updated
|
|
export type MediaStore = any;
|
|
export type MediaState = any;
|
|
export type MediaStateOwner = any;
|