I need to send values to function print() in hello.js
and work on it
import { Component, OnInit } from '@angular/core';
import * as hello from "./hello.js";
@component({
selector: 'hello',
templateUrl: 'hello.component.html'
})
export class ChartsComponent implements OnInit {
ngOnInit() {
$.print("hello");
}
}
error is
Property 'print' does not exist on type 'JQueryStatic'.)