UNPKG
@jfparent/formio-export
Version:
latest (0.4.12)
0.4.12
0.4.11
0.4.10
0.4.9
0.4.8
0.4.7
Formio Export Tools
github.com/jifparent/formio-export
jifparent/formio-export
@jfparent/formio-export
/
src
/
plugins
/
xlsx
/
index.js
11 lines
(10 loc)
•
238 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
default
(config = {}) => {
return
new
Promise
(
(
resolve, reject
) =>
{
try
{
throw
new
Error
(
'[FormioExport] method not implemented'
); }
catch
(error) {
console
.
error
(error);
reject
(error); } }); };