aboutsummaryrefslogtreecommitdiff
path: root/lib/csv/dataType.mli
diff options
context:
space:
mode:
Diffstat (limited to 'lib/csv/dataType.mli')
-rw-r--r--lib/csv/dataType.mli8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/csv/dataType.mli b/lib/csv/dataType.mli
new file mode 100644
index 0000000..ebb8bc7
--- /dev/null
+++ b/lib/csv/dataType.mli
@@ -0,0 +1,8 @@
+type t =
+ | Null
+ | Error of string
+ | Content of string
+ | Integer of int
+ | Float of float
+
+val to_string : t -> string