balena-supervisor/typings/global.d.ts
Cameron Diver a0710d39ef
types: Add global typings file containing Dictionary<T> type
Change-type: patch
Signed-off-by: Cameron Diver <cameron@resin.io>
2018-09-03 09:39:06 -07:00

3 lines
46 B
TypeScript

interface Dictionary<T> {
[key: string]: T;
}