feat(site): add util reference pipeline (#537)

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Darius Cepulis
2026-02-24 15:34:34 -06:00
committed by GitHub
co-authored by Claude Opus 4.6
parent c11395ece1
commit 78112fbefd
143 changed files with 7031 additions and 481 deletions
+2
View File
@@ -19,6 +19,8 @@ const stateContext: StateContext<unknown> = {
* const selectPlayback = createSelector(playbackSlice);
* selectPlayback(store.state); // { paused, play, pause, ... } | undefined
* ```
*
* @param slice - The feature slice to create a selector for.
*/
export function createSelector<S extends AnySlice>(slice: S): (state: object) => InferSliceState<S> | undefined {
const initialState = slice.state(stateContext);