next-ucap-messenger/projects/ucap-webmessenger-ui/src/lib/components/file-viewer.component.ts

17 lines
440 B
TypeScript
Raw Normal View History

2019-11-06 04:48:06 +00:00
import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';
import { ucapAnimations } from '../animations';
@Component({
selector: 'ucap-file-viewer',
templateUrl: './file-viewer.component.html',
styleUrls: ['./file-viewer.component.scss'],
animations: ucapAnimations
})
export class FileViewerComponent implements OnInit {
@Output()
closed = new EventEmitter<void>();
constructor() {}
ngOnInit() {}
}