Skip to content

Instantly share code, notes, and snippets.

@pfftdammitchris
Created January 16, 2026 04:25
Show Gist options
  • Select an option

  • Save pfftdammitchris/c98f4636e700ac492d3d10f649b09cc1 to your computer and use it in GitHub Desktop.

Select an option

Save pfftdammitchris/c98f4636e700ac492d3d10f649b09cc1 to your computer and use it in GitHub Desktop.
The Power of TypeScript's Satisfies Operator - snippet-7.ts
// Best of both worlds
const config = {
timeout: 5000,
retries: 3,
} satisfies Partial<Config>
// config.timeout is `5000`, and we know it matches Config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment