8000 support different pyodide versions by fpliger · Pull Request #328 · pyscript/pyscript · GitHub
[go: up one dir, main page]

Skip to content

support different pyodide versions #328

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
May 11, 2022
Prev Previous commit
Next Next commit
export initializer type
  • Loading branch information
fpliger committed May 10, 2022
commit 48fed33d057d7e84790440e07ca0488579322ece
2 changes: 1 addition & 1 deletion pyscriptjs/src/stores.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { writable } from 'svelte/store';
import type { PyScript } from './components/pyscript';

type Initializer = () => Promise<void>;
export type Initializer = () => Promise<void>;

export const pyodideLoaded = writable({
loaded: false,
Expand Down
0