types: Add global typings file containing Dictionary<T> type

Change-type: patch
Signed-off-by: Cameron Diver <cameron@resin.io>
This commit is contained in:
Cameron Diver 2018-09-01 17:30:56 -07:00
parent 99c807a48c
commit a0710d39ef
No known key found for this signature in database
GPG Key ID: 69264F9C923F55C1

3
typings/global.d.ts vendored Normal file
View File

@ -0,0 +1,3 @@
interface Dictionary<T> {
[key: string]: T;
}