“TypeScript Conwert Readonly” Kod odpowiedzi

TypeScript Conwert Readonly

type DeepWriteable<T> = { -readonly [P in keyof T]: DeepWriteable<T[P]> };
florinrelea

TypeScript Readonly

class Octopus {  readonly name: string;  readonly numberOfLegs: number = 8;
  constructor(theName: string) {    this.name = theName;  }}
let dad = new Octopus("Man with the 8 strong legs");dad.name = "Man with the 3-piece suit";Cannot assign to 'name' because it is a read-only property.2540Cannot assign to 'name' because it is a read-only property.Try
Bewildered Bear

Odpowiedzi podobne do “TypeScript Conwert Readonly”

Pytania podobne do “TypeScript Conwert Readonly”

Więcej pokrewnych odpowiedzi na “TypeScript Conwert Readonly” w TypeScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu