feat(core): add cursor hint field to rendered event

This commit is contained in:
Federico Terzi 2021-04-16 21:01:14 +02:00
parent d7e841bf03
commit da6b68b09e

View File

@ -30,4 +30,6 @@ pub struct RenderingRequestedEvent {
pub struct RenderedEvent { pub struct RenderedEvent {
pub trigger: String, pub trigger: String,
pub body: String, pub body: String,
pub cursor_hint_back_count: Option<usize>,
} }