Guest User

Untitled

a guest
Mar 21st, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. declare var bootbox: any;
  2.  
  3. declare var Chart: any;
  4.  
  5. @Component({
  6. selector: 'my-component',
  7. templateUrl: './my-component.component.html',
  8. styleUrls: ['./my-component.component.scss']
  9. })
  10.  
  11. export class MyComponent {
  12. //you can use Chart now and compiler wont complain
  13. private color = Chart.color;
  14. }
  15.  
  16. declare const bootbox;
  17.  
  18. window["bootbox"]
Add Comment
Please, Sign In to add comment