UNPKG

enketo-transformer

Version:

Library that transforms ODK-compliant XForms into a format that Enketo can consume

18 lines (17 loc) 527 B
/** * @module api * * @description This is not a robust, secure web API. It is just a quick starting point. * This repo is not used in production as a web API (only as a library). * * See inventory of work to be done here: https://github.com/enketo/enketo-transformer/labels/web-api-only. * * PRs are very welcome! */ import express from 'express'; /** @package */ export declare const api: (app: express.Application) => void; /** * Exported for backwards compatibility, prefer named imports. */ export default api;