Mercurial > hg > ugly-duckling
comparison src/app/waveform/waveform.component.ts @ 6:ee4353d1aeeb
Add skeleton files for waveform component.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Wed, 26 Oct 2016 16:57:51 +0100 |
parents | |
children | a50a4e814ff3 |
comparison
equal
deleted
inserted
replaced
5:8d82412dfd50 | 6:ee4353d1aeeb |
---|---|
1 import { Component, OnInit } from '@angular/core'; | |
2 declare var wavesUI: any; | |
3 | |
4 @Component({ | |
5 selector: 'app-waveform', | |
6 templateUrl: './waveform.component.html', | |
7 styleUrls: ['./waveform.component.css'] | |
8 }) | |
9 export class WaveformComponent implements OnInit { | |
10 | |
11 constructor() { | |
12 console.log(wavesUI.core); | |
13 } | |
14 | |
15 ngOnInit() { | |
16 } | |
17 } |