package quill

  1. Overview
  2. Docs
Interactive notebook for OCaml data science

Install

dune-project
 Dependency

Authors

Maintainers

Sources

raven-1.0.0.alpha2.tbz
sha256=93abc49d075a1754442ccf495645bc4fdc83e4c66391ec8aca8fa15d2b4f44d2
sha512=5eb958c51f30ae46abded4c96f48d1825f79c7ce03f975f9a6237cdfed0d62c0b4a0774296694def391573d849d1f869919c49008acffca95946b818ad325f6f

doc/quill.editor/Quill_editor/Event/index.html

Module Quill_editor.EventSource

Sourcetype code_execution_status = [
  1. | `Success
  2. | `Error
]
Sourcetype code_execution_result = {
  1. output : string;
  2. error : string option;
  3. status : code_execution_status;
}
Sourcetype t =
  1. | Document_loaded of {
    1. path : string;
    2. document : Document.t;
    }
  2. | Document_load_failed of {
    1. path : string;
    2. error : string;
    }
  3. | Document_saved of {
    1. path : string;
    }
  4. | Document_save_failed of {
    1. path : string;
    2. error : string;
    }
  5. | Code_execution_completed of {
    1. block_id : int;
    2. result : code_execution_result;
    }
  6. | Clipboard_content_received of {
    1. text : string;
    }
  7. | Clipboard_operation_failed of {
    1. error : string;
    }