“Typscript Keyof -Objekt” 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 Keyof -Objekt

type staffKeys = 'name' | 'salary';
function getProperty<T, K extends staffKeys>(obj: T, key: K): T[K] {
return obj[key];
}
temitope agboola

Ähnliche Antworten wie “Typscript Keyof -Objekt”

Fragen ähnlich wie “Typscript Keyof -Objekt”

Weitere verwandte Antworten zu “Typscript Keyof -Objekt” auf TypeScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen