obsidian-typings 4.57.0 → 4.58.0
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/cjs/implementations.d.cts +9 -1
- package/dist/cjs/types.d.cts +170 -1470
- package/dist/obsidian-typings.api.json +18 -1
- package/package.json +1 -1
|
@@ -8,7 +8,7 @@ import type { Tree as LezerTree } from '@lezer/common';
|
|
|
8
8
|
import type { App as App$1, BrowserWindow } from 'electron';
|
|
9
9
|
import type { default as moment$1 } from 'moment';
|
|
10
10
|
import type { FSWatcher } from 'node:fs';
|
|
11
|
-
import type { App, BlockCache, CacheItem, CachedMetadata, CloseableComponent, ColorComponent, Command, Component, DataAdapter, Debouncer, EditableFileView, Editor, EditorPosition, EditorRange, EditorRangeOrCaret, EditorSuggest, EmbedCache, EventRef, Events, FileStats, FileView, FrontmatterLinkCache, FuzzySuggestModal, HoverLinkSource, HoverPopover, IconName, ItemView, KeymapInfo, LinkCache, MarkdownEditView, MarkdownFileInfo, MarkdownPostProcessorContext, MarkdownPreviewView, MarkdownView, Menu, Modal, PaneType, Plugin as Plugin, PluginManifest, PluginSettingTab, PopoverSuggest, Reference, ReferenceCache,
|
|
11
|
+
import type { App, BlockCache, CacheItem, CachedMetadata, CloseableComponent, ColorComponent, Command, Component, DataAdapter, Debouncer, EditableFileView, Editor, EditorPosition, EditorRange, EditorRangeOrCaret, EditorSuggest, EmbedCache, EventRef, Events, FileStats, FileView, FrontmatterLinkCache, FuzzySuggestModal, HoverLinkSource, HoverPopover, IconName, ItemView, KeymapInfo, LinkCache, MarkdownEditView, MarkdownFileInfo, MarkdownPostProcessorContext, MarkdownPreviewView, MarkdownView, Menu, Modal, PaneType, Plugin as Plugin, PluginManifest, PluginSettingTab, PopoverSuggest, Reference, ReferenceCache, Scope, SearchComponent, SearchResult, Setting, SettingTab, SplitDirection, TAbstractFile, TFile, TFolder, TextComponent, TextFileView, Vault, View, ViewCreator, ViewState, Workspace, WorkspaceLeaf, WorkspaceTabs } from 'obsidian';
|
|
12
12
|
import type { Application, Container, Graphics, ICanvas, Sprite, Text as Text$1, TextStyle } from 'pixi.js';
|
|
13
13
|
|
|
14
14
|
/**
|
|
@@ -10221,6 +10221,14 @@ export interface ReleaseNotesView extends ItemView {
|
|
|
10221
10221
|
*/
|
|
10222
10222
|
export interface ReleaseNotesViewConstructor extends TypedViewConstructor<ReleaseNotesView> {
|
|
10223
10223
|
}
|
|
10224
|
+
/**
|
|
10225
|
+
* Render context.
|
|
10226
|
+
*
|
|
10227
|
+
* @public
|
|
10228
|
+
* @unofficial
|
|
10229
|
+
*/
|
|
10230
|
+
export interface RenderContext {
|
|
10231
|
+
}
|
|
10224
10232
|
/**
|
|
10225
10233
|
* @todo Documentation incomplete.
|
|
10226
10234
|
* @public
|