clean up interfaces

This commit is contained in:
atagen 2024-12-03 14:30:20 +11:00
parent 7b907f8812
commit 0f82bd2dba
6 changed files with 6 additions and 16 deletions

View file

@ -1,5 +1,4 @@
type serialiser = { mutable buf : string; sz : int; mutable pos : int; }
type serialiser = { mutable buf : bytes; mutable pos : int; }
val flush : serialiser -> unit
val serialise : serialiser -> Types.chunk -> unit
val create : serialiser
val print_debug : serialiser -> unit