TypeScript utility types for test automation: Partial and Omit
TypeScript comes with a variety of built-in utility types. Two of them - Partial and Omit - can be particularly useful in API tests.
12.04.2026
TypeScript comes with a variety of built-in utility types. Two of them - Partial and Omit - can be particularly useful in API tests.
As more and more companies migrate from Java to JavaScript for UI and API testing, I decided to study it too. After all, even this blog is powered by React. One of the features I sometimes used in Java is function overloading, which I thought wasn't possible in JavaScript. However, as I've recently learned, TypeScript adds this functionality. Well, kind of.