mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-06 20:15:17 +02:00
refactor(editor): remove truncation logic and related properties from editor content response
This commit is contained in:
parent
640238e1af
commit
f19f31e51c
4 changed files with 1 additions and 22 deletions
|
|
@ -50,7 +50,6 @@ interface EditorContent {
|
|||
source_markdown: string;
|
||||
content_size_bytes?: number;
|
||||
chunk_count?: number;
|
||||
truncated?: boolean;
|
||||
viewer_mode?: ViewerMode;
|
||||
editor_plate_max_bytes?: number;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -22,7 +22,6 @@ interface DocumentContent {
|
|||
source_markdown: string;
|
||||
content_size_bytes?: number;
|
||||
chunk_count?: number;
|
||||
truncated?: boolean;
|
||||
viewer_mode?: ViewerMode;
|
||||
editor_plate_max_bytes?: number;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -43,7 +43,6 @@ export type EditorContent = {
|
|||
source_markdown: string;
|
||||
content_size_bytes: number;
|
||||
chunk_count: number;
|
||||
truncated: boolean;
|
||||
viewer_mode?: "plate" | "monaco";
|
||||
editor_plate_max_bytes?: number;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue