stylex_structures/shorthands_of_shorthands.rs
1use stylex_macros::stylex_unimplemented;
2
3use crate::{order::Order, order_pair::OrderPair};
4
5#[allow(dead_code)]
6pub struct ShorthandsOfShorthands {}
7
8impl Order for ShorthandsOfShorthands {
9 fn get_expansion_fn(
10 _property: &str,
11 ) -> Option<fn(Option<String>) -> Result<Vec<OrderPair>, String>> {
12 stylex_unimplemented!("ShorthandsOfShorthands")
13 }
14}