Migrate Master component to typescript

This commit is contained in:
Qolzam
2017-10-07 15:05:07 +07:00
parent 1810550331
commit 8e8875b15c
7 changed files with 164 additions and 32 deletions

View File

@@ -0,0 +1,24 @@
export interface IMasterState {
/**
* Loding will be appeared if it's true
*
* @type {Boolean}
* @memberof IMasterState
*/
loading: Boolean,
/**
* It's true if user is authorized
*
* @type {Boolean}
* @memberof IMasterState
*/
authed:Boolean;
/**
* It's true if all default data loaded from database
*
* @type {Boolean}
* @memberof IMasterState
*/
dataLoaded:Boolean;
}