Skip to main content

DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/IPC/WindServiceHandlers/NativeHost/
ClipboardReadBuffer.rs

1//! Wire method: `nativeHost:readClipboardBuffer`.
2//! Binary clipboard not yet implemented - returns empty array.
3
4use serde_json::{Value, json};
5
6pub async fn Fn(_Arguments:Vec<Value>) -> Result<Value, String> { Ok(json!([])) }