UNPKG

@anjuna/docs

Version:

Anjuna Documentation Web Components

20 lines (19 loc) 552 B
export class EventDef { render() { return [ h("h4", null, h("ad-decorator", null, "@Event"), "\u00A0", h("ad-api-name", null, this.event.event)), h("p", null, this.event.docs) ]; } static get is() { return "ad-event-def"; } static get properties() { return { "event": { "type": "Any", "attr": "event" } }; } static get style() { return "/**style-placeholder:ad-event-def:**/"; } }