I have a function like this
myHelperNumber.js
function myLittleBoy(){
  console.log('I see you)
}
How to use this function in User.js component or userSevicer.js service?
myHelperFunction.ts
export function myLittleBoy(){
  console.log('Hello World')
}
RegisterComponent.ts
import {myLittleBoy} from 'path to myhelperfunction.ts'
                        export function myLittleBoy(){
  console.log('I see you)
}
import { Component } from '@angular/core';
declare var myLittleBoy:any;
@Component({
  selector: 'my-app',
  template: '<h1>Hello {{name}}</h1>',
})
export class AppComponent  { 
    constructor(private __jsmodel:JSmodelEvents){
        myLittleBoy();
    }
}
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With