Optional Function Typescript Interface Code Example


Example 1: ts interface optional parameter


interface Person {
name: string;
age: number;
phone?: string;
}

let p: Person = {name: "Ashlee", age: 29};
console.log(p);

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");

Example 3: create method in interface for set TS


running: someTask, arg: test

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable