refactor: Use Dictionary<T> type in ports module

Change-type: patch
Signed-off-by: Cameron Diver <cameron@resin.io>
This commit is contained in:
Cameron Diver 2018-09-03 09:25:58 -07:00
parent 328b07a092
commit 8bd895d24f
No known key found for this signature in database
GPG Key ID: 69264F9C923F55C1

View File

@ -15,7 +15,7 @@ export interface PortBindings {
}
export interface DockerPortOptions {
exposedPorts: Map<string, {}>;
exposedPorts: Dictionary<{}>;
portBindings: PortBindings;
}