When I am retrieving JSON entities via jQuery from the server and manipulating them client side, I have this desire to be able to see their interface via Visual Studio intellisense. So, ignoring whether this is a stupid idea, is this possible in any way?
So what I was thinking was being able to reference Entities.js, which would contain definitions for all entities, ie:
Class Person
String Name
String Address
String Telephone
Enc Class
So then when writing client side javascript, these properties would be visible via intellisense.
I have a feeling this is not possible though? If not, could it perhaps be simulated via enums or something like that?