TypeScript - クラス - インターフェースの実装

公開日:2019-02-08 更新日:2019-05-14

1. 概要

クラスにインターフェースを付けて実装します。

2. サンプル

interface ITest {
	test(): void;
}

class Test implements ITest {
	public test(): void {
		console.log("Test");
	}
}

const obj: ITest = new Test();
obj.test(); //Test