Readable interface for subscribing.
| 2137 | |
| 2138 | /** Readable interface for subscribing. */ |
| 2139 | interface Readable<T> { |
| 2140 | /** |
| 2141 | * Subscribe on value changes. |
| 2142 | * @param run subscription callback |
| 2143 | * @param invalidate cleanup callback |
| 2144 | */ |
| 2145 | subscribe(this: void, run: Subscriber<T>, invalidate?: () => void): Unsubscriber; |
| 2146 | } |
| 2147 | /** |
| 2148 | * A [media query](https:class="cm">//svelte.dev/docs/svelte/svelte-reactivity#MediaQuery) that matches if the user [prefers reduced motion](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-motion). |
| 2149 | * |
nothing calls this directly
no outgoing calls
no test coverage detected