Developer

Cristhofer

CristhGunners - Desarrollador de Software

Andana

Designer

Key dinámicos en Typescript

ts

abril 08, 2023

Key dinámicos en Typescript:

interface Example1 {
  [key: string]: string;
};

type Example2 = {
  [key: string]: string;
};