blob: c01fef471f04dfccbb1418cd63d5e04b30337486 [file] [log] [blame]
#![allow(unused_imports)]
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
#[doc = "The `IdbCursorDirection` enum."]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `IdbCursorDirection`*"]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum IdbCursorDirection {
Next = "next",
Nextunique = "nextunique",
Prev = "prev",
Prevunique = "prevunique",
}