Skip to content

Instantly share code, notes, and snippets.

@dioxmio
Created November 12, 2022 20:21
Show Gist options
  • Save dioxmio/e72b4636821a022542dab0c7263c955e to your computer and use it in GitHub Desktop.
Save dioxmio/e72b4636821a022542dab0c7263c955e to your computer and use it in GitHub Desktop.
type Point = {
x: number,
y: number
};
const origin = {
x: 0,
y: 0,
// ❌ Type '{ x: number; y: number; z: number; }' does not satisfy the expected type 'Point'
z: 0
} satisfies Point;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment