UNPKG

@anjuna/docs

Version:

Anjuna Documentation Web Components

34 lines (33 loc) 921 B
import { h } from "@stencil/core"; export class ArgDef { render() { return [ h("ad-api-name", null, this.arg.name), h("ad-type-def", null, this.arg.type) ]; } static get is() { return "ad-arg-def"; } static get originalStyleUrls() { return { "$": ["arg-def.scss"] }; } static get styleUrls() { return { "$": ["arg-def.css"] }; } static get properties() { return { "arg": { "type": "unknown", "mutable": false, "complexType": { "original": "{[key: string]: any}", "resolved": "{ [key: string]: any; }", "references": {} }, "required": false, "optional": false, "docs": { "tags": [], "text": "" } } }; } }