@anjuna/docs
Version:
Anjuna Documentation Web Components
20 lines (19 loc) • 597 B
JavaScript
export class OutputDef {
render() {
return [
h("h4", null,
h("ad-decorator", null, "@Output\u00A0"),
h("ad-api-name", null, this.output.name),
h("ad-type-def", null, this.output.type)),
h("p", null, this.output.docs)
];
}
static get is() { return "ad-output-def"; }
static get properties() { return {
"output": {
"type": "Any",
"attr": "output"
}
}; }
static get style() { return "/**style-placeholder:ad-output-def:**/"; }
}