Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.
ExtractUserTheme
type ExtractUserTheme<T> = [key in keyofT]: keyextends"extend" ? never : T[key]extendsThemeSectionResolver<infer Value, T & BaseTheme> ? Value : T[key] & BaseTheme;