arrToMap.d.ts 96 B

123
  1. declare function arrToMap<T>(arr: string[], val?: T): { [key: string]: T };
  2. export = arrToMap;