diff options
Diffstat (limited to 'src/console/reducers')
-rw-r--r-- | src/console/reducers/index.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/console/reducers/index.ts b/src/console/reducers/index.ts index 048a24f..677a982 100644 --- a/src/console/reducers/index.ts +++ b/src/console/reducers/index.ts @@ -1,11 +1,12 @@ import * as actions from '../actions'; +import Completions from "../Completions"; export interface State { mode: string; messageText: string; consoleText: string; completionSource: string; - completions: any[], + completions: Completions; select: number; viewIndex: number; } |