UNPKG

kompendium

Version:

Documentation generator for Stencil components

13 lines (12 loc) 458 B
import { h } from '@stencil/core'; import { PropertyList } from '../../component/templates/props'; import { MethodList } from '../../component/templates/methods'; export function Interface({ type, }) { return [ h("h1", { id: type.name }, type.name), h("kompendium-markdown", { text: type.docs }), h("kompendium-taglist", { tags: type.docsTags }), h(PropertyList, { props: type.props }), h(MethodList, { methods: type.methods }), ]; }