Fix pkl.reflect#typedType to mirror the right type (#426)

This commit is contained in:
Lily Ballard
2024-04-12 13:35:35 -07:00
committed by GitHub
parent 889e64586a
commit f71323024c

View File

@@ -92,7 +92,7 @@ const objectType: DeclaredType = DeclaredType(Class(Object))
const dynamicType: DeclaredType = DeclaredType(Class(Dynamic))
/// A mirror for the [Typed] type.
const typedType: DeclaredType = DeclaredType(Class(Type))
const typedType: DeclaredType = DeclaredType(Class(Typed))
/// A mirror for the `Listing<unknown>` type.
const listingType: DeclaredType = DeclaredType(Class(Listing))