Home / Type/ StoresValues Type — svelte Architecture

StoresValues Type — svelte Architecture

Architecture documentation for the StoresValues type/interface in private.d.ts from the svelte codebase.

Entity Profile

Dependency Diagram

graph TD
  fac3c2b8_ca36_f344_d022_f9617c0c1571["StoresValues"]
  3640a2da_92c4_7792_2719_d4fc1081acb8["private.d.ts"]
  fac3c2b8_ca36_f344_d022_f9617c0c1571 -->|defined in| 3640a2da_92c4_7792_2719_d4fc1081acb8
  style fac3c2b8_ca36_f344_d022_f9617c0c1571 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

packages/svelte/src/store/private.d.ts lines 10–11

type StoresValues<T> =
	T extends Readable<infer U> ? U : { [K in keyof T]: T[K] extends Readable<infer U> ? U : never };

Frequently Asked Questions

What is the StoresValues type?
StoresValues is a type/interface in the svelte codebase, defined in packages/svelte/src/store/private.d.ts.
Where is StoresValues defined?
StoresValues is defined in packages/svelte/src/store/private.d.ts at line 10.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free