You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
zallen edited this page May 8, 2019
·
10 revisions
What is TypeScript?
TypeScript extends JavaScript with static typing. It can make code easier to understand and maintain by specifying properties and behavior more explicitly. It also improves the developer experience for consumers of our library through providing typings for other TypeScript projects.
Interfaces, classes, and enums allow you to define custom types that describe data structures and behavior. You can also share properties and behavior between different types via inheritance.