| 1 | mod alias; |
|---|---|
| 2 | mod config; |
| 3 | mod constant; |
| 4 | mod dir; |
| 5 | mod document; |
| 6 | mod match_; |
| 7 | mod property; |
| 8 | mod selectfont; |
| 9 | mod value; |
| 10 | |
| 11 | #[derive(Copy, Clone, Debug, PartialEq, Eq)] |
| 12 | #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))] |
| 13 | #[cfg_attr(feature = "serde", serde(untagged))] |
| 14 | pub enum IntOrRange { |
| 15 | Int(Int), |
| 16 | Range(Int, Int), |
| 17 | } |
| 18 | |
| 19 | pub use self::{ |
| 20 | alias::*, config::*, constant::*, dir::*, document::*, match_::*, property::*, selectfont::*, |
| 21 | value::*, |
| 22 | }; |
| 23 |
