This content originally appeared on DEV Community and was authored by Mikhail Potapov
In TypeScript, it is common for developers to prefix their interfaces with "I" (e.g., IUser) following the Hungarian notation. However, not all developers adhere to this convention.
I used to prefer using the "I" prefix for my interfaces as I believed it improved the reliability and clarity of my code. I also extended this convention to types, like TUser.
However, I encountered an issue when I needed to convert some interfaces into types, specifically when my interface became a union type of other interfaces. This necessitated replacing all the "I" prefixes with "T" throughout the codebase. These changes proved to be cumbersome, unnecessary. This issue has occurred multiple times for me and my colleagues, leading us to abandon the use of the "I" prefix.
I would like to know your thoughts on this matter. Do you also use prefixes for your interfaces?
This content originally appeared on DEV Community and was authored by Mikhail Potapov

Mikhail Potapov | Sciencx (2023-05-17T17:14:42+00:00) 🔥 Naming Interfaces in TypeScript: IUser vs User. Retrieved from https://www.scien.cx/2023/05/17/%f0%9f%94%a5-naming-interfaces-in-typescript-iuser-vs-user/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.