package ojs_filetree

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

Types of filetree edition.

type path = Ojs_base.Path.t

All paths should be relative to root directory.

type mime_type = string
type file_tree = [
  1. | `Dir of string * file_tree list
  2. | `File of string * mime_type
]
module type B = sig ... end
module Make_base () : B
module type P = sig ... end
module type Default_P = sig ... end