1 2// Trait used to indicate that a struct has been decorated with 3// the #[derive(JsInterface)] procedural macro 4pub trait __JsInterface { 5 fn js_interface_name() -> &'static str; 6}