Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Access to ObjectValidator._properties #33

Open
toiroakr opened this issue Feb 9, 2023 · 0 comments
Open

Access to ObjectValidator._properties #33

toiroakr opened this issue Feb 9, 2023 · 0 comments

Comments

@toiroakr
Copy link

toiroakr commented Feb 9, 2023

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 from TypaA._properties but _properties is private.
Could you add access to _properties to 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(),
  })
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant