Forest.js Core Documentation - v1.2.3
    Preparing search index...

    Type Alias StoreProps<R, S>

    StoreProps: [S, (values: StoreValues<S>) => R]

    Type for reactive props derived from stores. Allows dynamically mapping store values to specific properties.

    Type Parameters

    const reactiveProps: StoreProps<string, MyStoreMap> = [{ myStore }, ({ myStore }) => myStore.values];