Skip to content

Instantly share code, notes, and snippets.

@ycmjason
Created February 26, 2020 16:26
Show Gist options
  • Save ycmjason/9c134a8a7232ec500d6ce2b0c26b5fcd to your computer and use it in GitHub Desktop.
Save ycmjason/9c134a8a7232ec500d6ce2b0c26b5fcd to your computer and use it in GitHub Desktop.
const r = reactive({ a: 3 }) // r is of type `{ a: number }`
r.a = 5
r.b // this will throw a type error as `b` is not a key of `{ a: number }`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment