mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-09-03 01:07:07 +00:00
13 lines
408 B
TypeScript
13 lines
408 B
TypeScript
import type { TFile } from "@/deps";
|
|
import type { FilePathWithPrefix, LoadedEntry } from "@vrtmrz/livesync-commonlib/compat/common/types";
|
|
|
|
export const EVENT_REQUEST_SHOW_HISTORY = "show-history";
|
|
|
|
declare global {
|
|
interface LSEvents {
|
|
[EVENT_REQUEST_SHOW_HISTORY]:
|
|
| { file: TFile; fileOnDB: LoadedEntry }
|
|
| { file: FilePathWithPrefix; fileOnDB: LoadedEntry };
|
|
}
|
|
}
|