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