UNPKG
aot-formio-export
Version:
latest (1.2.0)
1.2.0
1.1.0
1.0.0
0.3.1
AOT Formio Export
github.com/AOT-Technologies/formio-export
AOT-Technologies/formio-export
aot-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); } }); };