refactor(store): rename feature to slice (#373)

This commit is contained in:
rahim
2026-02-02 17:30:47 +11:00
committed by GitHub
parent d28dda114c
commit a1d0383d41
40 changed files with 862 additions and 741 deletions
+26
View File
@@ -0,0 +1,26 @@
// Re-exports from core/dom
export {
type AnyPlayerFeature,
type BufferState,
definePlayerFeature,
type FeatureAvailability,
features,
type Media,
type MediaContainer,
type PlaybackState,
type PlayerFeature,
type PlayerStore,
type PlayerTarget,
type SourceState,
selectBuffer,
selectPlayback,
selectSource,
selectTime,
selectVolume,
type TimeState,
type VolumeState,
} from '@videojs/core/dom';
// Re-exports from store (utilities)
export type { Comparator, Selector } from '@videojs/store';
export { createSelector, shallowEqual } from '@videojs/store';