Fix code style

This commit is contained in:
Thomas Nordquist
2019-06-16 19:25:50 +02:00
parent 0ebb6f4424
commit 1884f3baae
3 changed files with 5 additions and 4 deletions

View File

@@ -15,7 +15,9 @@ import * as path from 'path'
import { ActionTypes, Action } from '../reducers/ConnectionManager'
type ConnectionDictionary = { [s: string]: ConnectionOptions }
interface ConnectionDictionary {
[s: string]: ConnectionOptions
}
const storedConnectionsIdentifier: StorageIdentifier<ConnectionDictionary> = {
id: 'ConnectionManager_connections',
}