diff --git a/apps/desktop/desktop_native/autotype/src/lib.rs b/apps/desktop/desktop_native/autotype/src/lib.rs index 6d7b9f9db85..053d1f3bf9e 100644 --- a/apps/desktop/desktop_native/autotype/src/lib.rs +++ b/apps/desktop/desktop_native/autotype/src/lib.rs @@ -20,3 +20,7 @@ pub fn get_foreground_window_title() -> std::result::Result { pub fn type_input(input: Vec) -> std::result::Result<(), ()> { windowing::type_input(input) } + +pub fn foo_bar() -> std::result::Result<(), ()> { + Ok(()) +} diff --git a/apps/desktop/desktop_native/napi/src/lib.rs b/apps/desktop/desktop_native/napi/src/lib.rs index 4731166852b..e443f8cf48c 100644 --- a/apps/desktop/desktop_native/napi/src/lib.rs +++ b/apps/desktop/desktop_native/napi/src/lib.rs @@ -1049,4 +1049,8 @@ pub mod autotype { napi::Error::from_reason("Autotype Error: failed to type input".to_string()) }) } + #[napi] + pub fn foo_bar() -> napi::Result<(), napi::Status> { + Ok(()) + } }