“TypeScript” Kod odpowiedzi

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

TypeScript

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

TypeRccript Typy typów scalania interfejsy

interface A {
    x: string
}

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

Odpowiedzi podobne do “TypeScript”

Pytania podobne do “TypeScript”

Więcej pokrewnych odpowiedzi na “TypeScript” w TypeScript

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

Przeglądaj inne języki kodu