MasatoDev / boostest

14 stars 0 forks source link

feat: support index sig #23

Closed MasatoDev closed 2 months ago

MasatoDev commented 2 months ago

support index signature as below.

export type IndexSignature = {
  [Str_Key: string]: number;
  [Num_Key: number]: number;
  [Symbol_Key: symbol]: boolean;
};