matrix-dimension/web/app/configs/widget/config_screen/config_screen.widget.component.ts
2017-12-23 13:32:07 -07:00

16 lines
No EOL
478 B
TypeScript

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