interface in ts code example
Example 1: typescript class implements interface
interface Task{
name: String;
run(arg: any):void;
}
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 2: typescript interface
interface Foo {
bar: string;
qux: number;
}
const MyFoo = <Foo> {
bar: "Hello",
qux: 7
}
const MyFoo: Foo = {
bar: "Hello",
qux: 7
}
Example 3: 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
Example 4: typescript interface
interface NumberOrStringDictionary {
[index: string]: number | string;
length: number;
name: string;
}Try
Example 5: interface ts one valu
type StringOrNull = string | null;