TypeScript – Bitkorn Blog https://blog.bitkorn.de Developer Zeugz Tue, 27 Jun 2023 09:16:55 +0000 de-DE hourly 1 https://wordpress.org/?v=6.3.1 TypeScript Zeug https://blog.bitkorn.de/typescript-zeug/ Tue, 27 Jun 2023 09:16:55 +0000 https://blog.bitkorn.de/?p=1234 Sie heißen Indexsignatur und ich verwende sie für Assoc Arrays aus PHP.

export class Assoc {
  [index: string]: string;
}

www.typescriptlang.org/docs/handbook/2/objects.html#index-signatures

]]>
TypeScript document.getElementById().value https://blog.bitkorn.de/typescript-document-getelementbyid-value/ Mon, 09 Mar 2020 11:54:09 +0000 http://blog.bitkorn.de/?p=733 Die herkömmliche Art an die Value eines Input Elements zu kommen, funktioniert in TypeScript nicht.

JavaScript:

document.getElementById('my_id').value = 42;

TypeScript (3.7.5):

(document.getElementById('my_id') as HTMLInputElement).value = 42;

Dank auch mal wieder an stackoverflow.

]]>