Skip to content

Commit bce4ef8

Browse files
JulienChampagnolBotellaA
authored andcommitted
fix export default
1 parent 95c9a8c commit bce4ef8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

protocols/vtk.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* eslint-disable arrow-body-style */
2-
export default function createMethods (session) {
2+
function createMethods (session) {
33
return {
44
create_object_pipeline: (params) => session.call('create_object_pipeline', [params]),
55
create_visualization: () => session.call('create_visualization', []),
@@ -14,3 +14,5 @@ export default function createMethods (session) {
1414
update_data: (params) => session.call('update_data', [params])
1515
};
1616
}
17+
18+
export default createMethods

0 commit comments

Comments
 (0)