“Typscript -Auswahl” Code-Antworten

TypeScript Keyof

interface Person {
  name: string;
  age: number;
  location: string;
}

type K1 = keyof Person; // "name" | "age" | "location"
type K2 = keyof Person[]; // "length" | "push" | "pop" | "concat" | ...
type K3 = keyof { [x: string]: Person }; // string
SHARKO_MAN

Typscript -Auswahl

interface Tarea {
  titulo: string;
  descripcion: string;
  completado: boolean;
}

type TareaReducido = Pick<Tarea, "titulo" | "descripcion">;

const tarea: TareaReducido = {
  titulo: "Limpiar Recamara",
  descripcion: "Poner en orden todo lo que existe en la recamara",
};
Fancy Fowl

Typscript Utility -Typen verschmelzen Schnittstellen

interface A {
    x: string
}

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

Ähnliche Antworten wie “Typscript -Auswahl”

Fragen ähnlich wie “Typscript -Auswahl”

Weitere verwandte Antworten zu “Typscript -Auswahl” auf TypeScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen