matrix-dimension/web/app/configs/widget/config-screen/config-screen.widget.component.ts

16 lines
485 B
TypeScript
Raw Normal View History

2017-12-23 20:32:07 +00:00
import { WidgetComponent } from "../widget.component";
import { Component, ContentChild, Input, TemplateRef } from "@angular/core";
@Component({
selector: "my-widget-config",
2018-03-25 03:44:05 +00:00
templateUrl: "config-screen.widget.component.html",
styleUrls: ["config-screen.widget.component.scss"],
})
export class ConfigScreenWidgetComponent {
2017-12-23 20:32:07 +00:00
@Input() widgetComponent: WidgetComponent;
@ContentChild(TemplateRef) widgetParamsTemplate: TemplateRef<any>;
constructor() {
}
}