“TypeScript tablic obiektów z typami” Kod odpowiedzi

tablica obiektów TypeScript

let userTestStatus: { id: number, name: string }[] = [
    { "id": 0, "name": "Available" },
    { "id": 1, "name": "Ready" },
    { "id": 2, "name": "Started" }
];

userTestStatus[34978].nammme; // Error: Property 'nammme' does not exist on type [...]
Energetic Eland

tablica obiektów typuScript

// Create an interface that describes your object
interface Car {
  name: string;
  brand: string;
  price: number;
}

// The variable `cars` below has a type of an array of car objects.
let cars: Car[];
peachmangopie

TypeScript tablic obiektów z typami

type submitionDataType = {
    title: string,
    desc: string,
    decks: Array<{ front: string, back: string }>
}
SamuraiR4cc00n

Odpowiedzi podobne do “TypeScript tablic obiektów z typami”

Pytania podobne do “TypeScript tablic obiektów z typami”

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

Przeglądaj inne języki kodu