Dikt dinamis TypeScript

interface SampleObject {
  color?: string;
  width?: number;
  [propName: string]: number | string;
}
Blue Bat