mirror of
https://github.com/zoriya/v10.git
synced 2026-08-06 22:28:24 +00:00
Resolves TypeScript TS4094 error "Property may not be private or protected" in exported anonymous classes created by factory functions. Changes: - #mediaStore → _mediaStore (public with underscore convention) - #mediaSlot → _mediaSlot (public with underscore convention) - #handleMediaSlotChange → _handleMediaSlotChange (public with underscore) The underscore prefix indicates internal/private usage by convention while avoiding TypeScript restrictions on anonymous class exports. Affected files: - media-mute-button.ts: 5 field references updated - media-play-button.ts: 5 field references updated - media-container.ts: 10 field references updated All HTML packages now build successfully without TS4094 errors. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>