Commit
+0 -14 +/-1 browse
1 | diff --git a/lib/io.mli b/lib/io.mli |
2 | deleted file mode 100644 |
3 | index 7a6936c..0000000 |
4 | --- a/lib/io.mli |
5 | +++ /dev/null |
6 | @@ -1,14 +0,0 @@ |
7 | - (* TODO: somehow optional labels do not work the way I think they do *) |
8 | - |
9 | - val create : callback:string option -> content:string -> string -> unit |
10 | - (** write a new note to the destination and optionally run the callback *) |
11 | - |
12 | - val create_on_change : |
13 | - callback:string option -> editor:string -> string -> string -> unit |
14 | - (** write a new note to the destination and optionally run the callback, if the content is not modified, nothing will be written to the filesystem. *) |
15 | - |
16 | - val edit : callback:string option -> editor:string -> string -> unit |
17 | - (** modify an existing note and optionally read the callback on change *) |
18 | - |
19 | - val delete : callback:string option -> title:string -> string -> unit |
20 | - (** delete an existing note from the filesystem, optionally run callback on change *) |