typescript interface type name code example
Example 1: typescript valueof interface
type ValueOf<T> = T[keyof T];
Example 2: typescript type vs interface
type Weekday = 'Monday' | 'Tuesday' | 'Wednesday' | 'Thursday' | 'Friday' | 'Saturday' | 'Sunday';
let day1: Weekday = 'Monday';
let day2: Weekday = 'January';
interface Person {
firstName: string;
lastName: string;
age: number;
}
let person1: Person = {
firstName: 'James',
lastName: 'Smith',
age: 30
}
let person2: Person = {
firstName: 'Mary',
lastName: 'Williams'
}
Example 3: typescript interface vs type
interface Car {
name: string;
brand: string;
price: number;
}
type Car = {
name: string;
brand: string;
price: number;
}
interface Car extends Vehicle {
name: string;
brand: string;
price: number;
}
type Car = Vehicle & {
name: string;
brand: string;
price: number;
}
Example 4: typescript interface
interface LabeledValue {
label: string;
}
function printLabel(labeledObj: LabeledValue) {
console.log(labeledObj.label);
}
let myObj = { size: 10, label: "Size 10 Object" };
printLabel(myObj);Try