Standards
When to use PascalCase
Best Practices
Avoid using the "any" type
Avoid using Non-primitive types
Type Inference
Examples
Use enums
Use Interfaces
Extend Interfaces
interface Person { name: string; } interface Member extends Person { email: string; password: string; }
Please Login or Register to comment
Please Login or Register to comment