Open toiroakr opened 1 year ago
I want to create a type by modifying another type like below. But, I don't want to export typeAProps.
typeAProps
I want to create TypeB from TypaA._properties but _properties is private. Could you add access to _properties to ObjectValidator?
TypeB
TypaA._properties
_properties
ObjectValidator
export const typeAProps = { id: v.string().required(), name: v.string().required(), ... }; export const TypeA = annotate( { title: "TypeA" }, v.object(typeAProps) ); // another file export const TypeB = annotate( { title: "TypeB" }, v.object({ ...typeAProps, // => ...TypaA._properties id: v.number().required(), }) );
I want to create a type by modifying another type like below. But, I don't want to export
typeAProps
.I want to create
TypeB
fromTypaA._properties
but_properties
is private. Could you add access to_properties
toObjectValidator
?