12 lines
246 B
OCaml
12 lines
246 B
OCaml
type t =
|
|
| Css of string Css.css
|
|
| Html of Html_doc.t
|
|
| JavaScript of Js_of_ocaml_compiler.Javascript.program
|
|
| Txt of string
|
|
| Unsafe of
|
|
{ content : string
|
|
; mimetype : Mimetype.t
|
|
}
|
|
|
|
val to_mimetype : t -> Mimetype.t
|