🔥 Naming Interfaces in TypeScript: IUser vs User

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…


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


Print Share Comment Cite Upload Translate Updates
APA

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/

MLA
" » 🔥 Naming Interfaces in TypeScript: IUser vs User." Mikhail Potapov | Sciencx - Wednesday May 17, 2023, https://www.scien.cx/2023/05/17/%f0%9f%94%a5-naming-interfaces-in-typescript-iuser-vs-user/
HARVARD
Mikhail Potapov | Sciencx Wednesday May 17, 2023 » 🔥 Naming Interfaces in TypeScript: IUser vs User., viewed ,<https://www.scien.cx/2023/05/17/%f0%9f%94%a5-naming-interfaces-in-typescript-iuser-vs-user/>
VANCOUVER
Mikhail Potapov | Sciencx - » 🔥 Naming Interfaces in TypeScript: IUser vs User. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2023/05/17/%f0%9f%94%a5-naming-interfaces-in-typescript-iuser-vs-user/
CHICAGO
" » 🔥 Naming Interfaces in TypeScript: IUser vs User." Mikhail Potapov | Sciencx - Accessed . https://www.scien.cx/2023/05/17/%f0%9f%94%a5-naming-interfaces-in-typescript-iuser-vs-user/
IEEE
" » 🔥 Naming Interfaces in TypeScript: IUser vs User." Mikhail Potapov | Sciencx [Online]. Available: https://www.scien.cx/2023/05/17/%f0%9f%94%a5-naming-interfaces-in-typescript-iuser-vs-user/. [Accessed: ]
rf:citation
» 🔥 Naming Interfaces in TypeScript: IUser vs User | Mikhail Potapov | Sciencx | 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.

You must be logged in to translate posts. Please log in or register.