We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8603f69 commit 23d5337Copy full SHA for 23d5337
src/identity.rs
@@ -39,4 +39,11 @@ extern "C" {
39
details: &JsValue,
40
callback: &Function,
41
) -> Result<(), JsValue>;
42
+
43
+ // https://developer.chrome.com/docs/extensions/reference/identity/#method-getProfileUserInfo
44
+ #[wasm_bindgen(method, catch, js_name = getProfileUserInfo)]
45
+ pub async fn get_profile_user_info(
46
+ this: &Identity,
47
+ details: &JsValue,
48
+ ) -> Result<JsValue, JsValue>;
49
}
0 commit comments