aboutsummaryrefslogtreecommitdiff
path: root/lib/xml.ml
blob: 8b990496cebaa37fea64176bae5b888975fb175e (plain) (blame)
1
2
3
4
5
6
type element = {
    namespace : string;
    local_name : string;
    attributes : (string * string) list;
    children : (element, string) Either.t list;
  }