AppFlowy/frontend/rust-lib/flowy-text-block/resources/proto/entities.proto

16 lines
244 B
Protocol Buffer

syntax = "proto3";
message ExportPayload {
string view_id = 1;
ExportType export_type = 2;
}
message ExportData {
string data = 1;
ExportType export_type = 2;
}
enum ExportType {
Text = 0;
Markdown = 1;
Link = 2;
}