A component to render HTTP method body documentation based on AMF model
npm install @salesforcedevs/sfdocs-api-body-documentThis component is being deprecated. The code base has been moved to api-documentation module. This module will be archived when PR 37 is merged.
-----
A component to render HTTP method body documentation based on AMF model generated from API spec file.
This version only works with AMF model version 2 (AMF parser >= 4.0.0).
For compatibility with previous model version use 3.x.x version of the component.
``sh`
npm install --save @api-components/api-body-document
`html`
`js
import { LitElement, html } from 'lit-element';
import '@api-components/api-body-document/api-body-document.js';
class SampleElement extends PolymerElement {
render() {
return html
;`
}
}
customElements.define('sample-element', SampleElement);
`sh`
git clone https://github.com/advanced-rest-client/api-body-document
cd api-body-document
npm install
`sh`
npm start
`sh``
npm test