Skip to content
This repository has been archived by the owner on Jun 13, 2019. It is now read-only.

Latest commit

 

History

History
29 lines (24 loc) · 511 Bytes

README.md

File metadata and controls

29 lines (24 loc) · 511 Bytes

dappform-forms-api

Standard shareable module to work with dappforms

Installation

npm install dappform-forms-api --save
yarn add dappform-forms-api

Usage

Javascript

const formsApi = require('dappform-forms-api');
console.log(formsApi.getForms('Boy'));
Output should be [ ... list of form objects ]

TypeScript

import { getForms } from 'dappform-forms-api'
console.log(getForms())
Output should be [ ... list of form objects ]