Skip to content

Commit 7e47db2

Browse files
committed
remove all typings warnings
1 parent 1f291d9 commit 7e47db2

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import * as injectTapEventPlugin from 'react-tap-event-plugin';
1111

1212

1313
export default class Main {
14-
public store: Redux.Store;
14+
public store: Redux.Store<any>;
1515
private side: HTMLElement;
1616
private statusBarTile: StatusBar.IStatusBarView|null;
1717
private subscriptions: any;

src/typings/tutorial/index.d.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ declare namespace Tutorial {
66
}
77

88
export interface Info {
9-
name: string;
9+
name?: string;
10+
title: string;
1011
description?: string;
1112
keywords?: string[];
1213
version?: string;
1314
latest?: string;
14-
isLatest: boolean;
15+
isLatest?: boolean;
1516
}
1617

1718
export interface Config {

0 commit comments

Comments
 (0)