mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +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;
|
|
}
|