summaryrefslogtreecommitdiff
path: root/src/vytree.mli
diff options
context:
space:
mode:
Diffstat (limited to 'src/vytree.mli')
-rw-r--r--src/vytree.mli4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/vytree.mli b/src/vytree.mli
index e990d1d..d268db4 100644
--- a/src/vytree.mli
+++ b/src/vytree.mli
@@ -4,6 +4,10 @@ exception Empty_path
exception Duplicate_child
exception Nonexistent_path
+type position = Before of string | After of string | Default
+
+type node_type = Leaf | Tag | Other
+
val make : 'a -> string -> 'a t
val make_full : 'a -> string -> ('a t) list -> 'a t