1mod alias;
2mod config;
3mod constant;
4mod dir;
5mod document;
6mod match_;
7mod property;
8mod selectfont;
9mod 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))]
14pub enum IntOrRange {
15 Int(Int),
16 Range(Int, Int),
17}
18
19pub use self::{
20 alias::*, config::*, constant::*, dir::*, document::*, match_::*, property::*, selectfont::*,
21 value::*,
22};
23