use wasm_bindgen::prelude::*;
use crate::{LatLngBounds, LayerGroup};
#[wasm_bindgen]
extern "C" {
#[derive(Clone, Debug)]
#[wasm_bindgen(extends = LayerGroup)]
pub type FeatureGroup;
#[wasm_bindgen(method, js_name = "setStyle")]
pub fn set_style(this: &FeatureGroup, style: &JsValue);
#[wasm_bindgen(method, js_name = "bringToFront")]
pub fn bring_to_front(this: &FeatureGroup);
#[wasm_bindgen(method, js_name = "bringToBack")]
pub fn bring_to_back(this: &FeatureGroup);
#[wasm_bindgen(method, js_name = "getBounds")]
pub fn get_bounds(this: &FeatureGroup) -> LatLngBounds;
}