mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
16 lines
516 B
TypeScript
16 lines
516 B
TypeScript
|
import { ComplexBotComponent } from "../complex-bot.component";
|
||
|
import { Component, ContentChild, Input, TemplateRef } from "@angular/core";
|
||
|
|
||
|
@Component({
|
||
|
selector: "my-complex-bot-config",
|
||
|
templateUrl: "config-screen.complex-bot.component.html",
|
||
|
styleUrls: ["config-screen.complex-bot.component.scss"],
|
||
|
})
|
||
|
export class ConfigScreenComplexBotComponent {
|
||
|
|
||
|
@Input() botComponent: ComplexBotComponent<any>;
|
||
|
@ContentChild(TemplateRef) botParamsTemplate: TemplateRef<any>;
|
||
|
|
||
|
constructor() {
|
||
|
}
|
||
|
}
|