Improvment in tslint standard (#16)

This commit is contained in:
Qolzam
2017-10-10 16:39:02 +07:00
parent 181d2b8abd
commit 1937742f04
160 changed files with 984 additions and 1019 deletions

View File

@@ -1,4 +1,4 @@
import { User,Profile } from "domain/users";
import { User,Profile } from 'domain/users'
/**
* User state
@@ -13,7 +13,7 @@ export class UserState {
* @type {({[userId: string]: Profile} | null)}
* @memberof UserState
*/
info: {[userId: string]: Profile} = {};
info: {[userId: string]: Profile} = {}
/**
* If users profile are loaded
@@ -21,7 +21,7 @@ export class UserState {
* @type {Boolean}
* @memberof UserState
*/
loaded: Boolean = false;
loaded: Boolean = false
/**
* If edit profile is open {true} or not {false}
@@ -29,5 +29,5 @@ export class UserState {
* @type {Boolean}
* @memberof UserState
*/
openEditProfile: Boolean = false;
openEditProfile: Boolean = false
}