Skip to content

Commit 98b13d5

Browse files
committed
Added createProgress too
1 parent aa69426 commit 98b13d5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

esm/exports.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
// this file simply exports enough stuff to allow
22
// 3rd party libraries, including PyScript, to work
33
import { buffered } from './interpreter/_io.js';
4+
import { createProgress } from './interpreter/_utils.js';
45
import { loadProgress as lP } from './interpreter/_python.js';
56
import { registry } from './interpreters.js';
67

78
const loadProgress = (type, ...rest) => lP(registry.get(type), ...rest);
89

9-
export { buffered, loadProgress };
10+
export { buffered, createProgress, loadProgress };
1011
export * from './index.js';
1112
export * from './script-handler.js';
1213
export * from './utils.js';

0 commit comments

Comments
 (0)