“Pomiar maszynopisu” Kod odpowiedzi

Pomiar maszynopisu

tstype Person = {  name: string;  age: number;  location: string;};type QuantumPerson = Omit<Person, "location">;// equivalent totype QuantumPerson = {  name: string;  age: number;};
Cautious Cat

TypeRccript Typy typów scalania interfejsy

interface A {
    x: string
}

interface B extends Omit<A, 'x'> {
  x: number
}

Odpowiedzi podobne do “Pomiar maszynopisu”

Pytania podobne do “Pomiar maszynopisu”

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

Przeglądaj inne języki kodu