orgnote-api 0.14.1 → 0.14.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api.ts +5 -1
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -103,7 +103,11 @@ export interface OrgNoteConfig {
|
|
|
103
103
|
language: string;
|
|
104
104
|
};
|
|
105
105
|
synchronization: {
|
|
106
|
-
type: 'none' | 'api'
|
|
106
|
+
type: 'none' | 'api';
|
|
107
|
+
};
|
|
108
|
+
vault: {
|
|
109
|
+
/* File system available only for mobile devices */
|
|
110
|
+
type: 'inmemory' | 'filesystem';
|
|
107
111
|
path?: string;
|
|
108
112
|
};
|
|
109
113
|
ui: {
|