mirror of
https://gitlab.com/ArkHost/HelixNotes.git
synced 2026-09-19 17:37:29 +02:00
Add iOS Files vault selection
This commit is contained in:
@@ -44,6 +44,7 @@ export interface NoteContent {
|
||||
export interface VaultConfig {
|
||||
path: string;
|
||||
name: string;
|
||||
bookmark_id?: string | null;
|
||||
// Per-vault WebDAV sync (moved off the global AppConfig).
|
||||
sync_provider?: string | null;
|
||||
webdav_url?: string | null;
|
||||
@@ -55,6 +56,12 @@ export interface VaultConfig {
|
||||
last_sync_time?: string | null;
|
||||
}
|
||||
|
||||
export interface ExternalVaultResult {
|
||||
bookmarkId: string;
|
||||
path: string;
|
||||
name: string;
|
||||
}
|
||||
|
||||
export interface CustomThemeColors {
|
||||
bg_primary: string;
|
||||
bg_secondary: string;
|
||||
@@ -77,6 +84,7 @@ export interface CustomTheme {
|
||||
export interface AppConfig {
|
||||
vaults: VaultConfig[];
|
||||
active_vault: string | null;
|
||||
active_bookmark_id?: string | null;
|
||||
theme: string;
|
||||
accent_color: string | null;
|
||||
font_size: number | null;
|
||||
|
||||
Reference in New Issue
Block a user