CristhGunners - Desarrollador de Software

Cristhofer Andana

Desarrollador de Software

Key dinámicos en Typescript

ts

abril 08, 2023

Key dinámicos en Typescript:

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

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