Interfaces
Interfaces
Section titled โInterfacesโinterface Person { name: string; age?: number }const p: Person = { name: "Ada" };
Notes
- Use
readonly
for immutability and?
for optional properties.
interface Person { name: string; age?: number }const p: Person = { name: "Ada" };
Notes
readonly
for immutability and ?
for optional properties.