//! Target-conditional re-exports that unify `libsqlite3-sys` (native) and
//! `sqlite-wasm-rs` (wasm32) behind a single import path.
pub use *;
pub use *;
/// The `SQLITE_TRANSIENT` destructor sentinel (`(sqlite3_destructor_type)-1`).
///
/// Passing it to `sqlite3_result_blob/_text` tells SQLite to copy the buffer
/// immediately, so the Rust-owned source can be freed as soon as the setter
/// returns. `libsqlite3-sys` does not expose a typed constant for it, so we
/// build it from the documented integer value.