typescript model interface vs class code example
Example 1: when to use type vs interface typescript
type Person = {
name: string;
age: number;
}
type speak = (sentence: string) => void;
interface Person extends Human {
name: string;
age: number;
}
interface speak {
(sentence: string): void;
}
Example 2: typescript class interface
interface IPerson {
name: string
age: number
hobby?: string[]
}
class Person implements IPerson {
name: string
age: number
hobby?: string[]
constructor(name: string, age: number, hobby: string[]) {
this.name = name
this.age = age
this.hobby = hobby
}
}
const output = new Person('john doe', 23, ['swimming', 'traveling', 'badminton'])
console.log(output)
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;
}