Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 2.07 KB

File metadata and controls

17 lines (12 loc) · 2.07 KB

Get Readonly Keys 매우 어려움 #utils #object-keys

by Anthony Fu @antfu

도전하기    English 简体中文 日本語 Português (BR)

객체의 readonly key 유니언을 반환하는 GetReadonlyKeys<T> 제네릭을 구현하세요.

예시

interface Todo {
  readonly title: string
  readonly description: string
  completed: boolean
}

type Keys = GetReadonlyKeys<Todo> // expected to be "title" | "description"

돌아가기 정답 공유하기 정답 보기