Ancora sistemazioni con typescript....

This commit is contained in:
paolo
2018-11-15 19:48:37 +01:00
parent f5b73414b1
commit 7c49a97217
30 changed files with 626 additions and 253 deletions

8
src/typings/GlobalState.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
export interface IGlobalState {
conta: number,
isLoginPage: boolean,
layoutNeeded: boolean,
mobileMode: boolean,
menuCollapse: boolean,
posts: Array
}

View File

@@ -1,4 +1,7 @@
//export * from './LoginState';
// export * from './LoginState';
export * from './GlobalState.d'
export interface IResponse<T> {