mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2026-01-05 04:49:16 +00:00
13 lines
589 B
TypeScript
13 lines
589 B
TypeScript
import { FilePath } from "./lib/src/types";
|
|
|
|
export {
|
|
addIcon, App, DataWriteOptions, debounce, Editor, FuzzySuggestModal, MarkdownRenderer, MarkdownView, Modal, Notice, Platform, Plugin, PluginManifest,
|
|
PluginSettingTab, Plugin_2, requestUrl, RequestUrlParam, RequestUrlResponse, sanitizeHTMLToDom, Setting, stringifyYaml, TAbstractFile, TextAreaComponent, TFile, TFolder,
|
|
parseYaml
|
|
} from "obsidian";
|
|
import {
|
|
normalizePath as normalizePath_
|
|
} from "obsidian";
|
|
const normalizePath = normalizePath_ as <T extends string | FilePath>(from: T) => T;
|
|
export { normalizePath }
|