mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-08-22 19:37:06 +00:00
9 lines
633 B
TypeScript
9 lines
633 B
TypeScript
import type { DatabaseFileAccess } from "@vrtmrz/livesync-commonlib/compat/interfaces/DatabaseFileAccess";
|
|
import { ServiceDatabaseFileAccessBase } from "@vrtmrz/livesync-commonlib/compat/serviceModules/ServiceDatabaseFileAccessBase";
|
|
|
|
// markChangesAreSame uses persistent data implicitly, we should refactor it too.
|
|
// For now, to make the refactoring done once, we just use them directly.
|
|
// Hence it remains in the plug-in rather than Commonlib. (markChangesAreSame is using indexedDB).
|
|
// Refactored, now migrating...
|
|
export class ServiceDatabaseFileAccess extends ServiceDatabaseFileAccessBase implements DatabaseFileAccess {}
|