Skip to main content
Module

x/structurae/index.ts>ViewInstance

Data structures for high-performance JavaScript applications.
Latest
type alias ViewInstance
import { type ViewInstance } from "https://deno.land/x/structurae@4.0.1/index.ts";
definition: [T] extends [
| boolean
| number
| string
| bigint
| ArrayBufferLike
]
? PrimitiveView<T> : T extends Array<infer U> ? ContainerView<U> : T extends object ? ComplexView<T> : never