코딩Coding/TypeScript
타입스크립트TypeScript 공식 문서
내인생PLUS
2023. 7. 23. 15:34
728x90
https://www.typescriptlang.org/docs/
The starting point for learning TypeScript
Find TypeScript starter projects: from Angular to React or Node.js and CLIs.
www.typescriptlang.org
interface
https://www.typescriptlang.org/docs/handbook/declaration-files/deep-dive.html
Documentation - Deep Dive
How do d.ts files work, a deep dive
www.typescriptlang.org
인터페이스는 클래스에서 구현부가 빠졌다고 이해하면 편하다. 즉, 어떠한 객체가 이러이러한 프로퍼티 혹은 메소드를 가진다고 선언하는 것이다. 실질적인 구현은 이를 구현한다고 선언하는 클래스에 맡긴다.
https://hyunseob.github.io/2016/10/17/typescript-interface/
TypeScript: 인터페이스(Interface)
이전 글 - TypeScript: 클래스(Class) 클래스와 인터페이스지금껏 JavaScript만을 다뤄본 개발자라면 인터페이스라는 개념은 익숙치 않을 것이다. 하지만 Java나 C# 등의 정적 타입 언어에서는 이미 많이
hyunseob.github.io
반응형