Module Graphql_websocket.Frame

module Opcode : sig ... end
type t = {
opcode : Opcode.t;
extension : int;
final : bool;
content : string;
}
val create : ?opcode:Opcode.t -> ?extension:int -> ?final:bool -> ?content:string -> unit -> t
val close : int -> t
val show : t -> string