В вашем файле .ts вы можете сделать это так:
import { Component, OnInit, Input } from '@angular/core';
@Component({
selector: 'app-test',
templateUrl: './test.component.html',
styleUrls: ['./test.component.scss'],
})
export class TestComponent implements OnInit {
@Input() myImage;
constructor(
){
}
ngOnInit() {
this.myImage = 'assets/imgs/myImage.png';
}
}