1 2 3 4 5 6 7 8 9 10 11
#![allow(dead_code)] use wasm_bindgen::prelude::*; #[wasm_bindgen(typescript_custom_section)] const STRING_PUBKEY_TY: &'static str = r#" /** * A Base58-encoded string representing a public key. */ export type StringPubkey = string; "#;