예외 처리

제네릭

제네릭 타입 이해하기

// 제네릭 인터페이스 구문
interface IValuable<T> {
		value: T
}