Interfaces and Types in TypeScript — a practical guide to TypeScript interfaces types with clear examples you can reuse in real projects.
Angular Tutorial Series (14/119). Prefer one article? Read the complete Angular tutorial.
Short description
Use interfaces for public APIs; unions/intersections with type.
Interface
interface Product {
id: number;
name: string;
price?: number;
}