Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ThemeValue

type ThemeValue<T> = T extends Record<string, infer V> ? Exclude<V, Record<string, V>> : T;

§Type Parameters

§Type

§
T extends Record<string, infer V> ? Exclude<V, Record<string, V>> : T
[src]