obsidian-typings 2.2.1-beta.8 → 2.2.1-beta.9
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/types.d.ts +6 -2
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -8,6 +8,12 @@ import * as fsPromises from 'node:fs/promises';
|
|
|
8
8
|
import * as path from 'node:path';
|
|
9
9
|
import { App, BlockCache, CachedMetadata, Command, Component, Constructor, EditableFileView, Editor, EditorPosition, EditorRange, EditorSuggest, EventRef, Events, FileStats, FileView, HoverLinkSource, HoverPopover, ItemView, KeymapInfo, Loc, MarkdownFileInfo, MarkdownPreviewView, MarkdownView, PaneType, Plugin as Plugin$1, PluginManifest, Reference, ReferenceCache, Scope, SearchComponent, SearchResult, SettingTab, SplitDirection, TAbstractFile, TFile, TFolder, TextFileView, Vault, View, ViewState, Workspace, WorkspaceLeaf } from 'obsidian';
|
|
10
10
|
|
|
11
|
+
export type StyleModule = {};
|
|
12
|
+
export type StyleSpec = {};
|
|
13
|
+
declare global {
|
|
14
|
+
/** @public */
|
|
15
|
+
var app: App;
|
|
16
|
+
}
|
|
11
17
|
declare module "obsidian" {
|
|
12
18
|
interface BlockSubpathResult extends SubpathResult {
|
|
13
19
|
}
|
|
@@ -68,8 +74,6 @@ declare module "obsidian" {
|
|
|
68
74
|
interface WorkspaceWindow extends WorkspaceContainer {
|
|
69
75
|
}
|
|
70
76
|
}
|
|
71
|
-
export type StyleModule = {};
|
|
72
|
-
export type StyleSpec = {};
|
|
73
77
|
/** @public */
|
|
74
78
|
export interface PositionedReference extends Reference {
|
|
75
79
|
/**
|