Move all message types to a standardised location

This commit is contained in:
Kristóf Tóth
2018-05-31 11:31:22 +02:00
parent 2bf68b1500
commit e510fb58f6
18 changed files with 30 additions and 30 deletions

View File

@ -5,10 +5,10 @@ import { Component, OnDestroy, OnInit, ChangeDetectorRef, ElementRef, ViewChild
import { DeploymentNotificationService } from '../services/deployment-notification.service';
import { Subscription } from 'rxjs';
import { WebSocketService } from '../services/websocket.service';
import { LayoutCommand } from './layout-command';
import { LayoutCommand } from '../message.types/layout.command';
import { config } from '../config';
import { ProcessLogService } from '../services/processlog.service';
import { LogMessage } from '../services/log.message';
import { LogMessage } from '../message.types/log.message';
@Component({
selector: 'app-dashboard',

View File

@ -1,9 +0,0 @@
// Copyright (C) 2018 Avatao.com Innovative Learning Kft.
// All Rights Reserved. See LICENSE file for details.
export interface LayoutCommand {
command: string;
layout?: string;
hide_messages?: boolean;
terminal_menu_item?: string;
}