import { Component, Input, Output, EventEmitter, OnInit } from "@angular/core"; import { IUserService, User } from "sigma-ng/admin-panel"; @Component({ selector: "admin-panel-profile", templateUrl: "./profile.component.html", styleUrls: ["./profile.component.css"], exportAs: 'admin-panel-profile', providers: [] }) export class ProfileComponent implements OnInit { @Input() service: IUserService; @Input() user: User = new User(); change: any = { old: "", new: "", repeat: "" }; public constructor() {} ngOnInit(): void {} }