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 {Vote} from './vote';
import {Vote} from './vote'
export {
Vote

View File

@@ -1,4 +1,4 @@
import { BaseDomain } from "domain/common";
import { BaseDomain } from 'domain/common'
export class Vote extends BaseDomain {
@@ -8,7 +8,7 @@ export class Vote extends BaseDomain {
* @type {string}
* @memberof Vote
*/
public id?: string | null;
public id?: string | null
/**
* Post identifire which vote on
@@ -16,7 +16,7 @@ export class Vote extends BaseDomain {
* @type {string}
* @memberof Vote
*/
public postId: string;
public postId: string
/**
* Vote date
@@ -24,7 +24,7 @@ export class Vote extends BaseDomain {
* @type {number}
* @memberof Vote
*/
public creationDate: number;
public creationDate: number
/**
* Voter full name
@@ -32,7 +32,7 @@ export class Vote extends BaseDomain {
* @type {string}
* @memberof Vote
*/
public userDisplayName: string;
public userDisplayName: string
/**
* Avatar of voter
@@ -40,7 +40,7 @@ export class Vote extends BaseDomain {
* @type {string}
* @memberof Vote
*/
public userAvatar: string;
public userAvatar: string
/**
* Voter identifier
@@ -48,6 +48,6 @@ export class Vote extends BaseDomain {
* @type {string}
* @memberof Vote
*/
public userId: string;
public userId: string
}