Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

EditorEvents

interface EditorEvents {
beforeCreate: {
editor: Editor;
}
;
blur: {
editor: Editor;
event: FocusEvent;
transaction: Transaction;
}
;
create: {
editor: Editor;
}
;
destroy: void;
focus: {
editor: Editor;
event: FocusEvent;
transaction: Transaction;
}
;
selectionUpdate: {
editor: Editor;
transaction: Transaction;
}
;
transaction: {
editor: Editor;
transaction: Transaction;
}
;
update: {
editor: Editor;
transaction: Transaction;
}
;
}

§Properties

§
beforeCreate: {
editor: Editor;
}
[src]
§
blur: {
editor: Editor;
event: FocusEvent;
transaction: Transaction;
}
[src]
§
create: {
editor: Editor;
}
[src]
§
destroy: void
[src]
§
focus: {
editor: Editor;
event: FocusEvent;
transaction: Transaction;
}
[src]
§
selectionUpdate: {
editor: Editor;
transaction: Transaction;
}
[src]
§
transaction: {
editor: Editor;
transaction: Transaction;
}
[src]
§
update: {
editor: Editor;
transaction: Transaction;
}
[src]