mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-19 07:03:37 +00:00
12 lines
216 B
Protocol Buffer
12 lines
216 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
enum GridNotification {
|
|
Unknown = 0;
|
|
DidCreateBlock = 11;
|
|
DidUpdateGridRow = 20;
|
|
DidUpdateGridField = 21;
|
|
DidUpdateRow = 30;
|
|
DidUpdateCell = 40;
|
|
DidUpdateField = 50;
|
|
}
|