This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
resolver/app/components/Master/IMasterState.ts
2017-10-21 10:56:57 +07:00

25 lines
482 B
TypeScript

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
}