type-challenges icon indicating copy to clipboard operation
type-challenges copied to clipboard

7 - Readonly

Open Oyeins-GUI opened this issue 1 year ago • 0 comments

type MyReadonly<T> = {
  readonly [K in keyof T]: T[K]
}

Oyeins-GUI avatar Oct 05 '24 18:10 Oyeins-GUI