/
raiden
/
obsidian-git-encrypt
Обзор
Документация
Войти
/
raiden
/
obsidian-git-encrypt
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/vault/vaultTypes.ts
11 строк
402 B
Robert Kuzhin
feat: sync local vault changes to encrypted mirror
09 авг 2026, 10:28
09 авг 2026, 10:28
994d9e6
Код
Авторство
О чём код?
export type VaultChange = | { readonly type: "create"; readonly path: string } | { readonly type: "modify"; readonly path: string } | { readonly type: "rename"; readonly oldPath: string; readonly newPath: string } | { readonly type: "delete"; readonly path: string }; export interface VaultFileSnapshot { readonly bytes: Uint8Array; readonly size: number; readonly modifiedAt: number; }