We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f291d9 commit 7e47db2Copy full SHA for 7e47db2
src/main.ts
@@ -11,7 +11,7 @@ import * as injectTapEventPlugin from 'react-tap-event-plugin';
11
12
13
export default class Main {
14
- public store: Redux.Store;
+ public store: Redux.Store<any>;
15
private side: HTMLElement;
16
private statusBarTile: StatusBar.IStatusBarView|null;
17
private subscriptions: any;
src/typings/tutorial/index.d.ts
@@ -6,12 +6,13 @@ declare namespace Tutorial {
6
}
7
8
export interface Info {
9
- name: string;
+ name?: string;
10
+ title: string;
description?: string;
keywords?: string[];
version?: string;
latest?: string;
- isLatest: boolean;
+ isLatest?: boolean;
18
export interface Config {
0 commit comments