mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-02-17 01:30:40 +00:00
Fixed:
- Now the filename is shown on the Conflict resolving dialog - Rename of files has been improved again.
This commit is contained in:
11
src/types.ts
11
src/types.ts
@@ -1,4 +1,4 @@
|
||||
import { PluginManifest } from "obsidian";
|
||||
import { PluginManifest, TFile } from "obsidian";
|
||||
import { DatabaseEntry, EntryBody } from "./lib/src/types";
|
||||
|
||||
export interface PluginDataEntry extends DatabaseEntry {
|
||||
@@ -31,6 +31,15 @@ export interface InternalFileInfo {
|
||||
deleted?: boolean;
|
||||
}
|
||||
|
||||
export interface FileInfo {
|
||||
path: string;
|
||||
mtime: number;
|
||||
ctime: number;
|
||||
size: number;
|
||||
deleted?: boolean;
|
||||
file: TFile;
|
||||
}
|
||||
|
||||
export type queueItem = {
|
||||
entry: EntryBody;
|
||||
missingChildren: string[];
|
||||
|
||||
Reference in New Issue
Block a user