Skip to main content

stylex_structures/
order.rs

1use crate::order_pair::OrderPair;
2
3pub trait Order {
4  fn get_expansion_fn(
5    property: &str,
6  ) -> Option<fn(Option<String>) -> Result<Vec<OrderPair>, String>>;
7}