Fix paths

This commit is contained in:
ziajka 2018-11-27 12:40:13 +01:00
parent e0b84d81cb
commit f0f3ee1bf7
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
import { Component, OnInit, ElementRef, AfterViewInit, OnDestroy, Input, Output, EventEmitter } from '@angular/core';
import { Observable, Subscription } from 'rxjs';
import { Point } from 'src/app/cartography/models/point';
import { Point } from '../../../models/point';
export class DraggableDraggedEvent {

View File

@ -1,6 +1,6 @@
import { Component, OnInit, Input, AfterViewInit, ChangeDetectorRef, Output, EventEmitter } from '@angular/core';
import { Observable, Subscription, Subject } from 'rxjs';
import { Rectangle } from 'src/app/cartography/models/rectangle';
import { Rectangle } from '../../../models/rectangle';
@Component({
selector: '[app-selection]',