obsidian-typings 2.2.1-beta.7 → 2.2.1-beta.8
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 +1 -0
- package/dist/obsidian-typings.api.json +1 -1
- package/dist/types.d.ts +47 -45
- package/package.json +1 -1
|
@@ -76,6 +76,7 @@ export declare const InternalPluginName: {
|
|
|
76
76
|
readonly Workspaces: "workspaces";
|
|
77
77
|
readonly ZkPrefixer: "zk-prefixer";
|
|
78
78
|
};
|
|
79
|
+
/** @public */
|
|
79
80
|
export interface PromisedQueue {
|
|
80
81
|
promise: Promise<void>;
|
|
81
82
|
queue(next: () => void | Promise<void>): Promise<void>;
|
|
@@ -31539,7 +31539,7 @@
|
|
|
31539
31539
|
{
|
|
31540
31540
|
"kind": "Interface",
|
|
31541
31541
|
"canonicalReference": "obsidian-typings!PromisedQueue:interface",
|
|
31542
|
-
"docComment": "",
|
|
31542
|
+
"docComment": "/**\n * @public\n */\n",
|
|
31543
31543
|
"excerptTokens": [
|
|
31544
31544
|
{
|
|
31545
31545
|
"kind": "Content",
|
package/dist/types.d.ts
CHANGED
|
@@ -140,6 +140,7 @@ export interface CanvasLinkUpdater extends LinkUpdater {
|
|
|
140
140
|
export interface LinkUpdaters extends Record<string, LinkUpdater> {
|
|
141
141
|
canvas?: CanvasLinkUpdater;
|
|
142
142
|
}
|
|
143
|
+
/** @public */
|
|
143
144
|
export interface PromisedQueue {
|
|
144
145
|
promise: Promise<void>;
|
|
145
146
|
queue(next: () => void | Promise<void>): Promise<void>;
|
|
@@ -6374,51 +6375,6 @@ declare module "obsidian" {
|
|
|
6374
6375
|
syncState(e: boolean): Promise<unknown>;
|
|
6375
6376
|
}
|
|
6376
6377
|
}
|
|
6377
|
-
/** @todo Documentation incomplete */
|
|
6378
|
-
/** @public */
|
|
6379
|
-
export interface VimState {
|
|
6380
|
-
vim: {
|
|
6381
|
-
inputState: {
|
|
6382
|
-
changeQueue: null;
|
|
6383
|
-
keyBuffer: [
|
|
6384
|
-
];
|
|
6385
|
-
motion: null;
|
|
6386
|
-
motionArgs: null;
|
|
6387
|
-
motionRepeat: [
|
|
6388
|
-
];
|
|
6389
|
-
operator: null;
|
|
6390
|
-
operatorArgs: null;
|
|
6391
|
-
prefixRepeat: [
|
|
6392
|
-
];
|
|
6393
|
-
registerName: null;
|
|
6394
|
-
};
|
|
6395
|
-
insertMode: false;
|
|
6396
|
-
insertModeRepeat: undefined;
|
|
6397
|
-
lastEditActionCommand: undefined;
|
|
6398
|
-
lastEditInputState: undefined;
|
|
6399
|
-
lastHPos: number;
|
|
6400
|
-
lastHSPos: number;
|
|
6401
|
-
lastMotion: {
|
|
6402
|
-
name?: string;
|
|
6403
|
-
};
|
|
6404
|
-
lastPastedText: null;
|
|
6405
|
-
lastSelection: null;
|
|
6406
|
-
};
|
|
6407
|
-
vimPlugin: {
|
|
6408
|
-
lastKeydown: string;
|
|
6409
|
-
};
|
|
6410
|
-
}
|
|
6411
|
-
/** @todo Documentation incomplete */
|
|
6412
|
-
/** @public */
|
|
6413
|
-
export interface VimEditor {
|
|
6414
|
-
state: VimState;
|
|
6415
|
-
}
|
|
6416
|
-
declare module "@codemirror/view" {
|
|
6417
|
-
/** @todo Documentation incomplete */
|
|
6418
|
-
interface EditorView {
|
|
6419
|
-
cm?: VimEditor;
|
|
6420
|
-
}
|
|
6421
|
-
}
|
|
6422
6378
|
/** @public */
|
|
6423
6379
|
export interface ImageView extends EditableFileView {
|
|
6424
6380
|
/**
|
|
@@ -6966,6 +6922,51 @@ export interface GraphView extends ItemView {
|
|
|
6966
6922
|
*/
|
|
6967
6923
|
onOptionsChange(): void;
|
|
6968
6924
|
}
|
|
6925
|
+
/** @todo Documentation incomplete */
|
|
6926
|
+
/** @public */
|
|
6927
|
+
export interface VimState {
|
|
6928
|
+
vim: {
|
|
6929
|
+
inputState: {
|
|
6930
|
+
changeQueue: null;
|
|
6931
|
+
keyBuffer: [
|
|
6932
|
+
];
|
|
6933
|
+
motion: null;
|
|
6934
|
+
motionArgs: null;
|
|
6935
|
+
motionRepeat: [
|
|
6936
|
+
];
|
|
6937
|
+
operator: null;
|
|
6938
|
+
operatorArgs: null;
|
|
6939
|
+
prefixRepeat: [
|
|
6940
|
+
];
|
|
6941
|
+
registerName: null;
|
|
6942
|
+
};
|
|
6943
|
+
insertMode: false;
|
|
6944
|
+
insertModeRepeat: undefined;
|
|
6945
|
+
lastEditActionCommand: undefined;
|
|
6946
|
+
lastEditInputState: undefined;
|
|
6947
|
+
lastHPos: number;
|
|
6948
|
+
lastHSPos: number;
|
|
6949
|
+
lastMotion: {
|
|
6950
|
+
name?: string;
|
|
6951
|
+
};
|
|
6952
|
+
lastPastedText: null;
|
|
6953
|
+
lastSelection: null;
|
|
6954
|
+
};
|
|
6955
|
+
vimPlugin: {
|
|
6956
|
+
lastKeydown: string;
|
|
6957
|
+
};
|
|
6958
|
+
}
|
|
6959
|
+
/** @todo Documentation incomplete */
|
|
6960
|
+
/** @public */
|
|
6961
|
+
export interface VimEditor {
|
|
6962
|
+
state: VimState;
|
|
6963
|
+
}
|
|
6964
|
+
declare module "@codemirror/view" {
|
|
6965
|
+
/** @todo Documentation incomplete */
|
|
6966
|
+
interface EditorView {
|
|
6967
|
+
cm?: VimEditor;
|
|
6968
|
+
}
|
|
6969
|
+
}
|
|
6969
6970
|
declare global {
|
|
6970
6971
|
interface DomElementInfo {
|
|
6971
6972
|
[eventName: `on${string}`]: EventListenerOrEventListenerObject;
|
|
@@ -6973,3 +6974,4 @@ declare global {
|
|
|
6973
6974
|
}
|
|
6974
6975
|
|
|
6975
6976
|
export {};
|
|
6977
|
+
import "./style-mod.d.cts";
|