package quill

  1. Overview
  2. Docs

Module Quill_editor.EffectSource

Sourcetype t =
  1. | Execute_code of {
    1. block_id : int;
    2. code : string;
    }
  2. | Load_document of {
    1. path : string;
    }
  3. | Save_document of {
    1. path : string;
    2. content : string;
    }
  4. | Copy_to_clipboard of {
    1. text : string;
    }
  5. | Cut_to_clipboard of {
    1. text : string;
    }
  6. | Request_clipboard_paste
  7. | Notify of {
    1. level : [ `Info | `Warning | `Error ];
    2. message : string;
    }