ts interface any named string param code example

Example 1: typescript extend interface

//declare interface to be extended
interface Vehicle {
  brand: string;
  plateNumber: number;
}

interface Car extends Vehicle {}

Example 2: typescript class implements interface

interface Task{
    name: String; //property
    run(arg: any):void; //method
}

class MyTask implements Task{
    name: String;
    constructor(name: String) {
        this.name = name;
    }
	run(arg: any): void {
        console.log(`running: ${this.name}, arg: ${arg}`);
    }
}

let myTask: Task = new MyTask('someTask');
myTask.run("test");