1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-16 00:14:34 +02:00

Desktop, Mobile: Added support for notebook icons

This commit is contained in:
Laurent Cozic
2021-11-15 17:19:51 +00:00
parent 79d97f2ba7
commit e97bb78ce4
25 changed files with 715 additions and 62 deletions

View File

@ -15,6 +15,14 @@ export interface BaseItemEntity {
created_time?: number;
}
export interface FolderIcon {
emoji: string;
name: string;
}
@ -60,6 +68,7 @@ export interface FolderEntity {
"is_shared"?: number
"share_id"?: string
"master_key_id"?: string
"icon"?: string
"type_"?: number
}
export interface ItemChangeEntity {