1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
mod constants;

pub use crate::{buffer::constants::BufferConstants, class::Buffer};
use js_sys::{JsString, Uint8Array};
use wasm_bindgen::prelude::*;

#[wasm_bindgen(module = "buffer")]
extern {
    #[allow(non_snake_case)]
    pub static INSPECT_MAX_BYTES: f64;

    pub static constants: BufferConstants;

    #[wasm_bindgen(js_name = "kMaxLength")]
    pub static k_max_length: f64;

    pub fn transcode(source: &Uint8Array, from_enc: &JsString, to_enc: &JsString) -> Buffer;
}