sai_dive IL

学んだことのアウトプットブログ

2021-10-08から1日間の記事一覧

【TypeScript】implements

implements クラスに対してinterfaceの条件を適用 interface Human { name: string; age: number; greeting(message: string): void; } class Developer implements Human { constructor(public name: string, pulic age: number) greeting(message: string)…