matrix-dimension/web/app/configs/widget/config-screen/config-screen.widget.component.ts
2018-03-24 21:44:05 -06:00

16 lines
No EOL
485 B
TypeScript

import { WidgetComponent } from "../widget.component";
import { Component, ContentChild, Input, TemplateRef } from "@angular/core";
@Component({
selector: "my-widget-config",
templateUrl: "config-screen.widget.component.html",
styleUrls: ["config-screen.widget.component.scss"],
})
export class ConfigScreenWidgetComponent {
@Input() widgetComponent: WidgetComponent;
@ContentChild(TemplateRef) widgetParamsTemplate: TemplateRef<any>;
constructor() {
}
}