UNPKG

@anjuna/docs

Version:

Anjuna Documentation Web Components

37 lines (36 loc) 1.13 kB
import { h } from "@stencil/core"; 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 originalStyleUrls() { return { "$": ["../../theme/definition.scss"] }; } static get styleUrls() { return { "$": ["../../theme/definition.css"] }; } static get properties() { return { "output": { "type": "unknown", "mutable": false, "complexType": { "original": "{[key: string]: any}", "resolved": "{ [key: string]: any; }", "references": {} }, "required": false, "optional": false, "docs": { "tags": [], "text": "The property to display" } } }; } }