mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-03-31 14:15:17 +00:00
17 lines
525 B
TypeScript
17 lines
525 B
TypeScript
import { type TAbstractFile, normalizePath } from "@/deps";
|
|
import type { FilePath } from "@lib/common/types";
|
|
import type { IPathAdapter } from "@lib/serviceModules/adapters";
|
|
|
|
/**
|
|
* Path adapter implementation for Obsidian
|
|
*/
|
|
export class ObsidianPathAdapter implements IPathAdapter<TAbstractFile> {
|
|
getPath(file: string | TAbstractFile): FilePath {
|
|
return (typeof file === "string" ? file : file.path) as FilePath;
|
|
}
|
|
|
|
normalisePath(path: string): string {
|
|
return normalizePath(path);
|
|
}
|
|
}
|