Skip to content

Commit 231e3f2

Browse files
committed
Export PyEvalOptions in typescript defs
1 parent e65639f commit 231e3f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wasm/lib/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ pub fn eval_py(source: &str, options: Option<Object>) -> Result<JsValue, JsValue
227227
#[wasm_bindgen(typescript_custom_section)]
228228
const TYPESCRIPT_DEFS: &'static str = r#"
229229
*/
230-
interface PyEvalOptions {
230+
export interface PyEvalOptions {
231231
stdout: (out: string) => void;
232232
vars: { [key: string]: any };
233233
}

0 commit comments

Comments
 (0)