obsidian-typings 2.2.1-beta.26 → 2.2.1-beta.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/implementations.d.ts +8 -8
- package/dist/types.d.ts +4022 -4020
- package/package.json +1 -1
|
@@ -94,23 +94,17 @@ export interface FileEntry extends Partial<FileStats> {
|
|
|
94
94
|
*/
|
|
95
95
|
uri?: string;
|
|
96
96
|
}
|
|
97
|
-
/** @todo Documentation incomplete */
|
|
98
|
-
/** @public */
|
|
99
|
-
export type ConfigItem = "accentColor" | "alwaysUpdateLinks" | "attachmentFolderPath" | "autoConvertHtml" | "autoPairBrackets" | "autoPairMarkdown" | "baseFontSize" | "baseFontSizeAction" | "cssTheme" | "defaultViewMode" | "emacsyKeys" | "enabledCssSnippets" | "fileSortOrder" | "focusNewTab" | "foldHeading" | "foldIndent" | "hotkeys" | "interfaceFontFamily" | "legacyEditor" | "livePreview" | "mobilePullAction" | "mobileQuickRibbonItem" | "mobileToolbarCommands" | "monospaceFontFamily" | "nativeMenus" | "newFileFolderPath" | "newFileLocation" | "newLinkFormat" | "pdfExportSettings" | "promptDelete" | "propertiesInDocument" | "readableLineLength" | "rightToLeft" | "showIndentGuide" | "showInlineTitle" | "showLineNumber" | "showUnsupportedFiles" | "showViewHeader" | "showRibbon" | "smartIndentList" | "spellcheck" | "spellcheckLanguages" | "strictLineBreaks" | "tabSize" | "textFontFamily" | "theme" | "translucency" | "trashOption" | "types" | "useMarkdownLinks" | "useTab" | "userIgnoreFilters" | "vimMode";
|
|
100
|
-
/** @public */
|
|
101
|
-
export type FileSystemWatchHandler = (eventType: string, path: string, oldPath?: string, stats?: FileStats) => void;
|
|
102
97
|
/** @public */
|
|
103
98
|
export interface PromisedQueue {
|
|
104
99
|
promise: Promise<void>;
|
|
105
100
|
queue(next: () => void | Promise<void>): Promise<void>;
|
|
106
101
|
}
|
|
107
102
|
/** @public */
|
|
108
|
-
export interface VaultFileMapRecord extends Record<string, TAbstractFile> {
|
|
109
|
-
}
|
|
110
|
-
/** @public */
|
|
111
103
|
export interface DataAdapterFilesRecord extends Record<string, FileEntry> {
|
|
112
104
|
}
|
|
113
105
|
/** @public */
|
|
106
|
+
export type FileSystemWatchHandler = (eventType: string, path: string, oldPath?: string, stats?: FileStats) => void;
|
|
107
|
+
/** @public */
|
|
114
108
|
export interface AppVaultConfigHotkeysRecord extends Record<string, string> {
|
|
115
109
|
}
|
|
116
110
|
/** @public */
|
|
@@ -336,5 +330,11 @@ export interface AppVaultConfig {
|
|
|
336
330
|
*/
|
|
337
331
|
vimMode?: false | boolean;
|
|
338
332
|
}
|
|
333
|
+
/** @todo Documentation incomplete */
|
|
334
|
+
/** @public */
|
|
335
|
+
export type ConfigItem = "accentColor" | "alwaysUpdateLinks" | "attachmentFolderPath" | "autoConvertHtml" | "autoPairBrackets" | "autoPairMarkdown" | "baseFontSize" | "baseFontSizeAction" | "cssTheme" | "defaultViewMode" | "emacsyKeys" | "enabledCssSnippets" | "fileSortOrder" | "focusNewTab" | "foldHeading" | "foldIndent" | "hotkeys" | "interfaceFontFamily" | "legacyEditor" | "livePreview" | "mobilePullAction" | "mobileQuickRibbonItem" | "mobileToolbarCommands" | "monospaceFontFamily" | "nativeMenus" | "newFileFolderPath" | "newFileLocation" | "newLinkFormat" | "pdfExportSettings" | "promptDelete" | "propertiesInDocument" | "readableLineLength" | "rightToLeft" | "showIndentGuide" | "showInlineTitle" | "showLineNumber" | "showUnsupportedFiles" | "showViewHeader" | "showRibbon" | "smartIndentList" | "spellcheck" | "spellcheckLanguages" | "strictLineBreaks" | "tabSize" | "textFontFamily" | "theme" | "translucency" | "trashOption" | "types" | "useMarkdownLinks" | "useTab" | "userIgnoreFilters" | "vimMode";
|
|
336
|
+
/** @public */
|
|
337
|
+
export interface VaultFileMapRecord extends Record<string, TAbstractFile> {
|
|
338
|
+
}
|
|
339
339
|
|
|
340
340
|
export {};
|