Skip to content
This repository was archived by the owner on Aug 18, 2023. It is now read-only.

Example in readme doesn't typecheck #25

Open
henribru opened this issue Jul 8, 2021 · 1 comment
Open

Example in readme doesn't typecheck #25

henribru opened this issue Jul 8, 2021 · 1 comment

Comments

@henribru
Copy link

henribru commented Jul 8, 2021

Using e.g. vue-tsc to get typechecking in Vue templates the example in the readme doesn't actually typecheck. Specifically you'll get an error that the key block is missing from the types object nested in serializers. This seems to be because block is defined as a required key here: https://github.com/rdunk/sanity-blocks-vue-component/blob/master/src/types.ts#L77. Though the serializers prop is a Partial<Serializers>, Partial doesn't extend to nested objects, so it doesn't stop block from being required.

@henribru henribru changed the title Example in readme doesn't typecheck due Example in readme doesn't typecheck Jul 8, 2021
@rdunk
Copy link
Owner

rdunk commented Jul 8, 2021

Perhaps I could use DeepPartial for the prop type? e.g.

type DeepPartial<T> = T extends Function
  ? T
  : T extends object
  ? { [P in keyof T]?: DeepPartial<T[P]> }
  : T;

export const SanityBlocks = defineComponent({
  ...
  props: {
    serializers: {
      type: Object as PropType<DeepPartial<Serializers>>,
      default: () => ({}),
    },
  },
  ...
});

What do you think?

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants