mirror of
https://github.com/zadam/trilium.git
synced 2025-11-17 18:50:41 +01:00
server-ts: Port share/shaca/content_renderer
This commit is contained in:
@@ -10,7 +10,7 @@ class SAttachment extends AbstractShacaEntity {
|
||||
private attachmentId: string;
|
||||
private ownerId: string;
|
||||
title: string;
|
||||
private role: string;
|
||||
role: string;
|
||||
private mime: string;
|
||||
private blobId: string;
|
||||
/** used for caching of images */
|
||||
|
||||
@@ -18,11 +18,11 @@ const isCredentials = (attr: SAttribute) => attr.type === 'label' && attr.name =
|
||||
class SNote extends AbstractShacaEntity {
|
||||
noteId: string;
|
||||
private title: string;
|
||||
private type: string;
|
||||
private mime: string;
|
||||
type: string;
|
||||
mime: string;
|
||||
private blobId: string;
|
||||
private utcDateModified: string;
|
||||
private isProtected: boolean;
|
||||
utcDateModified: string;
|
||||
isProtected: boolean;
|
||||
parentBranches: SBranch[];
|
||||
parents: SNote[];
|
||||
children: SNote[];
|
||||
|
||||
Reference in New Issue
Block a user