obsidian-typings 4.77.0 → 4.78.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 +70 -1
- package/dist/cjs/types.d.cts +161 -11
- package/dist/obsidian-typings.api.json +150 -0
- 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 { Mermaid } from 'mermaid';
|
|
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, RenderContext, Scope, SearchComponent, SearchResult, Setting, SettingTab, SplitDirection, TAbstractFile, TFile, TFolder, TextComponent, TextFileView, Vault, View, ViewCreator, ViewState, Workspace, WorkspaceLeaf, WorkspaceTabs, moment as moment$1 } from 'obsidian';
|
|
11
|
+
import type { App, BasesConfigFileFilter, 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, RenderContext, Scope, SearchComponent, SearchResult, Setting, SettingTab, SplitDirection, TAbstractFile, TFile, TFolder, TextComponent, TextFileView, Vault, View, ViewCreator, ViewState, Workspace, WorkspaceLeaf, WorkspaceTabs, moment as moment$1 } from 'obsidian';
|
|
12
12
|
import type { default as pdfjsLib } from 'pdfjs-dist';
|
|
13
13
|
import type { Application, Container, Graphics, ICanvas, Sprite, Text as Text$1, TextStyle } from 'pixi.js';
|
|
14
14
|
import type { default as Prism$1 } from 'prismjs';
|
|
@@ -1357,6 +1357,75 @@ export interface BacklinkView extends InfoFileView {
|
|
|
1357
1357
|
*/
|
|
1358
1358
|
export interface BacklinkViewConstructor extends TypedViewConstructor<BacklinkView> {
|
|
1359
1359
|
}
|
|
1360
|
+
/**
|
|
1361
|
+
* BasesConfigFileFilter `and` clause.
|
|
1362
|
+
*
|
|
1363
|
+
* @public
|
|
1364
|
+
* @unofficial
|
|
1365
|
+
*/
|
|
1366
|
+
export interface BasesConfigFileFilterAndClause {
|
|
1367
|
+
/**
|
|
1368
|
+
* All of the following filters must match.
|
|
1369
|
+
*
|
|
1370
|
+
* @public
|
|
1371
|
+
* @since 1.10.0
|
|
1372
|
+
* @example
|
|
1373
|
+
* ```ts
|
|
1374
|
+
* {
|
|
1375
|
+
* and: [
|
|
1376
|
+
* '*.md',
|
|
1377
|
+
* '*.txt',
|
|
1378
|
+
* ],
|
|
1379
|
+
* }
|
|
1380
|
+
*/
|
|
1381
|
+
and: BasesConfigFileFilter[];
|
|
1382
|
+
}
|
|
1383
|
+
/**
|
|
1384
|
+
* BasesConfigFileFilter `not` clause.
|
|
1385
|
+
*
|
|
1386
|
+
* @public
|
|
1387
|
+
* @unofficial
|
|
1388
|
+
*/
|
|
1389
|
+
export interface BasesConfigFileFilterNotClause {
|
|
1390
|
+
/**
|
|
1391
|
+
* None of the following filters should match.
|
|
1392
|
+
*
|
|
1393
|
+
* @public
|
|
1394
|
+
* @since 1.10.0
|
|
1395
|
+
* @example
|
|
1396
|
+
* ```ts
|
|
1397
|
+
* {
|
|
1398
|
+
* not: [
|
|
1399
|
+
* '*.md',
|
|
1400
|
+
* '*.txt',
|
|
1401
|
+
* ],
|
|
1402
|
+
* }
|
|
1403
|
+
*/
|
|
1404
|
+
not: BasesConfigFileFilter[];
|
|
1405
|
+
}
|
|
1406
|
+
/**
|
|
1407
|
+
* BasesConfigFileFilter `or` clause.
|
|
1408
|
+
*
|
|
1409
|
+
* @public
|
|
1410
|
+
* @unofficial
|
|
1411
|
+
*/
|
|
1412
|
+
export interface BasesConfigFileFilterOrClause {
|
|
1413
|
+
/**
|
|
1414
|
+
* Some of the following filters should match.
|
|
1415
|
+
*
|
|
1416
|
+
* @public
|
|
1417
|
+
* @since 1.10.0
|
|
1418
|
+
* @example
|
|
1419
|
+
* ```ts
|
|
1420
|
+
* {
|
|
1421
|
+
* or: [
|
|
1422
|
+
* '*.md',
|
|
1423
|
+
* '*.txt',
|
|
1424
|
+
* ],
|
|
1425
|
+
* }
|
|
1426
|
+
*/
|
|
1427
|
+
or: BasesConfigFileFilter[];
|
|
1428
|
+
}
|
|
1360
1429
|
/**
|
|
1361
1430
|
* Bases context
|
|
1362
1431
|
*
|
package/dist/cjs/types.d.cts
CHANGED
|
@@ -16,7 +16,7 @@ import * as fs from 'node:fs';
|
|
|
16
16
|
import type { FSWatcher, Stats } from 'node:fs';
|
|
17
17
|
import * as fsPromises from 'node:fs/promises';
|
|
18
18
|
import * as path from 'node:path';
|
|
19
|
-
import type { App, BlockCache, CacheItem, CachedMetadata, CloseableComponent, ColorComponent, Command, Component, Constructor, 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, Notice, ObsidianProtocolHandler, PaneType, Plugin as Plugin, PluginManifest, PluginSettingTab, PopoverSuggest, Reference, ReferenceCache, RenderContext, Scope, SearchComponent, SearchResult, Setting, SettingTab, SplitDirection, TAbstractFile, TFile, TFolder, TextComponent, TextFileView, Vault, View, ViewCreator, ViewState, Workspace, WorkspaceLeaf, WorkspaceTabs, moment as moment$1, request, requestUrl } from 'obsidian';
|
|
19
|
+
import type { App, BasesConfigFileFilter, BlockCache, CacheItem, CachedMetadata, CloseableComponent, ColorComponent, Command, Component, Constructor, 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, Notice, ObsidianProtocolHandler, PaneType, Plugin as Plugin, PluginManifest, PluginSettingTab, PopoverSuggest, Reference, ReferenceCache, RenderContext, Scope, SearchComponent, SearchResult, Setting, SettingTab, SplitDirection, TAbstractFile, TFile, TFolder, TextComponent, TextFileView, Vault, View, ViewCreator, ViewState, Workspace, WorkspaceLeaf, WorkspaceTabs, moment as moment$1, request, requestUrl } from 'obsidian';
|
|
20
20
|
import type { default as pdfjsLib } from 'pdfjs-dist';
|
|
21
21
|
import type { Application, Container, Graphics, ICanvas, Sprite, Text as Text$1, TextStyle, default as PIXI } from 'pixi.js';
|
|
22
22
|
import type { default as Prism$1 } from 'prismjs';
|
|
@@ -2323,7 +2323,7 @@ declare module "obsidian" {
|
|
|
2323
2323
|
*
|
|
2324
2324
|
* @deprecated - Added only for typing purposes. Use {@link BasesConfigFileFilter} instead.
|
|
2325
2325
|
*/
|
|
2326
|
-
type BasesConfigFileFilter__ = string |
|
|
2326
|
+
type BasesConfigFileFilter__ = string | BasesConfigFileFilterAndClause | BasesConfigFileFilterOrClause | BasesConfigFileFilterNotClause;
|
|
2327
2327
|
}
|
|
2328
2328
|
declare module "obsidian" {
|
|
2329
2329
|
/**
|
|
@@ -5481,11 +5481,18 @@ declare module "obsidian" {
|
|
|
5481
5481
|
*/
|
|
5482
5482
|
app: App;
|
|
5483
5483
|
/**
|
|
5484
|
-
*
|
|
5484
|
+
* HTML element for the setting tab content.
|
|
5485
5485
|
*
|
|
5486
5486
|
* @official
|
|
5487
5487
|
*/
|
|
5488
5488
|
containerEl: HTMLElement;
|
|
5489
|
+
/**
|
|
5490
|
+
* The icon to display in the settings sidebar.
|
|
5491
|
+
*
|
|
5492
|
+
* @official
|
|
5493
|
+
* @since 1.11.0
|
|
5494
|
+
*/
|
|
5495
|
+
icon: IconName;
|
|
5489
5496
|
/**
|
|
5490
5497
|
* Unique ID of the tab.
|
|
5491
5498
|
*
|
|
@@ -5620,6 +5627,20 @@ declare module "obsidian" {
|
|
|
5620
5627
|
* @official
|
|
5621
5628
|
*/
|
|
5622
5629
|
addColorPicker(cb: (component: ColorComponent) => any): this;
|
|
5630
|
+
/**
|
|
5631
|
+
* Add a component to the setting.
|
|
5632
|
+
*
|
|
5633
|
+
* @param cb - The callback to add the component.
|
|
5634
|
+
* @returns The setting.
|
|
5635
|
+
* @example
|
|
5636
|
+
* ```ts
|
|
5637
|
+
* setting.addComponent((el) => {
|
|
5638
|
+
* return new TextComponent(el);
|
|
5639
|
+
* });
|
|
5640
|
+
* @official
|
|
5641
|
+
* @since 1.11.0
|
|
5642
|
+
*/
|
|
5643
|
+
addComponent<T extends BaseComponent>(cb: (el: HTMLElement) => T): this;
|
|
5623
5644
|
/**
|
|
5624
5645
|
* Add a dropdown component to the setting.
|
|
5625
5646
|
*
|
|
@@ -10274,6 +10295,14 @@ declare module "obsidian" {
|
|
|
10274
10295
|
tags?: TagCache[];
|
|
10275
10296
|
}
|
|
10276
10297
|
}
|
|
10298
|
+
declare module "obsidian" {
|
|
10299
|
+
/**
|
|
10300
|
+
* Can be any Lucide icon name or an internal icon name.
|
|
10301
|
+
*
|
|
10302
|
+
* @deprecated - Added only for typing purposes. Use {@link IconName} instead.
|
|
10303
|
+
*/
|
|
10304
|
+
type IconName__ = string;
|
|
10305
|
+
}
|
|
10277
10306
|
declare module "obsidian" {
|
|
10278
10307
|
/**
|
|
10279
10308
|
* Collapsible container for other ViewOptions.
|
|
@@ -13479,6 +13508,66 @@ declare module "obsidian" {
|
|
|
13479
13508
|
top: number;
|
|
13480
13509
|
}
|
|
13481
13510
|
}
|
|
13511
|
+
declare module "obsidian" {
|
|
13512
|
+
/**
|
|
13513
|
+
* Setting group.
|
|
13514
|
+
*
|
|
13515
|
+
* @since 1.11.0
|
|
13516
|
+
*/
|
|
13517
|
+
interface SettingGroup {
|
|
13518
|
+
/**
|
|
13519
|
+
* Add a CSS class to the setting group.
|
|
13520
|
+
*
|
|
13521
|
+
* @param cls - The CSS class to add.
|
|
13522
|
+
* @returns The setting group.
|
|
13523
|
+
* @example
|
|
13524
|
+
* ```ts
|
|
13525
|
+
* settingGroup.addClass('foo');
|
|
13526
|
+
* ```
|
|
13527
|
+
* @official
|
|
13528
|
+
* @since 1.11.0
|
|
13529
|
+
*/
|
|
13530
|
+
addClass(cls: string): this;
|
|
13531
|
+
/**
|
|
13532
|
+
* Add a setting to the setting group.
|
|
13533
|
+
*
|
|
13534
|
+
* @param cb - The callback to add the setting.
|
|
13535
|
+
* @returns The setting group.
|
|
13536
|
+
* @example
|
|
13537
|
+
* ```ts
|
|
13538
|
+
* settingGroup.addSetting((setting) => {
|
|
13539
|
+
* setting.setName('foo');
|
|
13540
|
+
* });
|
|
13541
|
+
* ```
|
|
13542
|
+
* @official
|
|
13543
|
+
* @since 1.11.0
|
|
13544
|
+
*/
|
|
13545
|
+
addSetting(cb: (setting: Setting) => void): this;
|
|
13546
|
+
/**
|
|
13547
|
+
* Create a new setting group.
|
|
13548
|
+
*
|
|
13549
|
+
* @param containerEl - The container element.
|
|
13550
|
+
* @returns The setting group.
|
|
13551
|
+
* @official
|
|
13552
|
+
* @since 1.11.0
|
|
13553
|
+
* @deprecated - Added only for typing purposes. Use {@link constructor} instead.
|
|
13554
|
+
*/
|
|
13555
|
+
constructor__(containerEl: HTMLElement): this;
|
|
13556
|
+
/**
|
|
13557
|
+
* Set the heading of the setting group.
|
|
13558
|
+
*
|
|
13559
|
+
* @param text - The text to set the heading to.
|
|
13560
|
+
* @returns The setting group.
|
|
13561
|
+
* @example
|
|
13562
|
+
* ```ts
|
|
13563
|
+
* settingGroup.setHeading('foo');
|
|
13564
|
+
* ```
|
|
13565
|
+
* @official
|
|
13566
|
+
* @since 1.11.0
|
|
13567
|
+
*/
|
|
13568
|
+
setHeading(text: string | DocumentFragment): this;
|
|
13569
|
+
}
|
|
13570
|
+
}
|
|
13482
13571
|
declare module "obsidian" {
|
|
13483
13572
|
/**
|
|
13484
13573
|
* Slider option.
|
|
@@ -15153,14 +15242,6 @@ declare module "obsidian" {
|
|
|
15153
15242
|
*/
|
|
15154
15243
|
type EditorCommandName__ = "goUp" | "goDown" | "goLeft" | "goRight" | "goStart" | "goEnd" | "goWordLeft" | "goWordRight" | "indentMore" | "indentLess" | "newlineAndIndent" | "swapLineUp" | "swapLineDown" | "deleteLine" | "toggleFold" | "foldAll" | "unfoldAll";
|
|
15155
15244
|
}
|
|
15156
|
-
declare module "obsidian" {
|
|
15157
|
-
/**
|
|
15158
|
-
* The name of the icon.
|
|
15159
|
-
*
|
|
15160
|
-
* @deprecated - Added only for typing purposes. Use {@link IconName} instead.
|
|
15161
|
-
*/
|
|
15162
|
-
type IconName__ = string;
|
|
15163
|
-
}
|
|
15164
15245
|
declare module "obsidian" {
|
|
15165
15246
|
/**
|
|
15166
15247
|
* The object stored in the view plugin {@link livePreviewState}
|
|
@@ -19687,6 +19768,75 @@ export interface BacklinkView extends InfoFileView {
|
|
|
19687
19768
|
*/
|
|
19688
19769
|
export interface BacklinkViewConstructor extends TypedViewConstructor<BacklinkView> {
|
|
19689
19770
|
}
|
|
19771
|
+
/**
|
|
19772
|
+
* BasesConfigFileFilter `and` clause.
|
|
19773
|
+
*
|
|
19774
|
+
* @public
|
|
19775
|
+
* @unofficial
|
|
19776
|
+
*/
|
|
19777
|
+
export interface BasesConfigFileFilterAndClause {
|
|
19778
|
+
/**
|
|
19779
|
+
* All of the following filters must match.
|
|
19780
|
+
*
|
|
19781
|
+
* @public
|
|
19782
|
+
* @since 1.10.0
|
|
19783
|
+
* @example
|
|
19784
|
+
* ```ts
|
|
19785
|
+
* {
|
|
19786
|
+
* and: [
|
|
19787
|
+
* '*.md',
|
|
19788
|
+
* '*.txt',
|
|
19789
|
+
* ],
|
|
19790
|
+
* }
|
|
19791
|
+
*/
|
|
19792
|
+
and: BasesConfigFileFilter[];
|
|
19793
|
+
}
|
|
19794
|
+
/**
|
|
19795
|
+
* BasesConfigFileFilter `not` clause.
|
|
19796
|
+
*
|
|
19797
|
+
* @public
|
|
19798
|
+
* @unofficial
|
|
19799
|
+
*/
|
|
19800
|
+
export interface BasesConfigFileFilterNotClause {
|
|
19801
|
+
/**
|
|
19802
|
+
* None of the following filters should match.
|
|
19803
|
+
*
|
|
19804
|
+
* @public
|
|
19805
|
+
* @since 1.10.0
|
|
19806
|
+
* @example
|
|
19807
|
+
* ```ts
|
|
19808
|
+
* {
|
|
19809
|
+
* not: [
|
|
19810
|
+
* '*.md',
|
|
19811
|
+
* '*.txt',
|
|
19812
|
+
* ],
|
|
19813
|
+
* }
|
|
19814
|
+
*/
|
|
19815
|
+
not: BasesConfigFileFilter[];
|
|
19816
|
+
}
|
|
19817
|
+
/**
|
|
19818
|
+
* BasesConfigFileFilter `or` clause.
|
|
19819
|
+
*
|
|
19820
|
+
* @public
|
|
19821
|
+
* @unofficial
|
|
19822
|
+
*/
|
|
19823
|
+
export interface BasesConfigFileFilterOrClause {
|
|
19824
|
+
/**
|
|
19825
|
+
* Some of the following filters should match.
|
|
19826
|
+
*
|
|
19827
|
+
* @public
|
|
19828
|
+
* @since 1.10.0
|
|
19829
|
+
* @example
|
|
19830
|
+
* ```ts
|
|
19831
|
+
* {
|
|
19832
|
+
* or: [
|
|
19833
|
+
* '*.md',
|
|
19834
|
+
* '*.txt',
|
|
19835
|
+
* ],
|
|
19836
|
+
* }
|
|
19837
|
+
*/
|
|
19838
|
+
or: BasesConfigFileFilter[];
|
|
19839
|
+
}
|
|
19690
19840
|
/**
|
|
19691
19841
|
* Bases context
|
|
19692
19842
|
*
|
|
@@ -8685,6 +8685,156 @@
|
|
|
8685
8685
|
}
|
|
8686
8686
|
]
|
|
8687
8687
|
},
|
|
8688
|
+
{
|
|
8689
|
+
"kind": "Interface",
|
|
8690
|
+
"canonicalReference": "obsidian-typings!BasesConfigFileFilterAndClause:interface",
|
|
8691
|
+
"docComment": "/**\n * BasesConfigFileFilter `and` clause.\n *\n * @unofficial\n *\n * @public\n */\n",
|
|
8692
|
+
"excerptTokens": [
|
|
8693
|
+
{
|
|
8694
|
+
"kind": "Content",
|
|
8695
|
+
"text": "export interface BasesConfigFileFilterAndClause "
|
|
8696
|
+
}
|
|
8697
|
+
],
|
|
8698
|
+
"fileUrlPath": "src/obsidian/internals/Bases/BasesConfigFileFilterAndClause.d.ts",
|
|
8699
|
+
"releaseTag": "Public",
|
|
8700
|
+
"name": "BasesConfigFileFilterAndClause",
|
|
8701
|
+
"preserveMemberOrder": false,
|
|
8702
|
+
"members": [
|
|
8703
|
+
{
|
|
8704
|
+
"kind": "PropertySignature",
|
|
8705
|
+
"canonicalReference": "obsidian-typings!BasesConfigFileFilterAndClause#and:member",
|
|
8706
|
+
"docComment": "/**\n * All of the following filters must match.\n *\n * @since\n *\n * 1.10.0\n *\n * @example\n *\n * ```ts { and: [ '*.md', '*.txt', ], }\n *\n * @public\n */\n",
|
|
8707
|
+
"excerptTokens": [
|
|
8708
|
+
{
|
|
8709
|
+
"kind": "Content",
|
|
8710
|
+
"text": "and: "
|
|
8711
|
+
},
|
|
8712
|
+
{
|
|
8713
|
+
"kind": "Reference",
|
|
8714
|
+
"text": "BasesConfigFileFilter",
|
|
8715
|
+
"canonicalReference": "obsidian!BasesConfigFileFilter:type"
|
|
8716
|
+
},
|
|
8717
|
+
{
|
|
8718
|
+
"kind": "Content",
|
|
8719
|
+
"text": "[]"
|
|
8720
|
+
},
|
|
8721
|
+
{
|
|
8722
|
+
"kind": "Content",
|
|
8723
|
+
"text": ";"
|
|
8724
|
+
}
|
|
8725
|
+
],
|
|
8726
|
+
"isReadonly": false,
|
|
8727
|
+
"isOptional": false,
|
|
8728
|
+
"releaseTag": "Public",
|
|
8729
|
+
"name": "and",
|
|
8730
|
+
"propertyTypeTokenRange": {
|
|
8731
|
+
"startIndex": 1,
|
|
8732
|
+
"endIndex": 3
|
|
8733
|
+
}
|
|
8734
|
+
}
|
|
8735
|
+
],
|
|
8736
|
+
"extendsTokenRanges": []
|
|
8737
|
+
},
|
|
8738
|
+
{
|
|
8739
|
+
"kind": "Interface",
|
|
8740
|
+
"canonicalReference": "obsidian-typings!BasesConfigFileFilterNotClause:interface",
|
|
8741
|
+
"docComment": "/**\n * BasesConfigFileFilter `not` clause.\n *\n * @unofficial\n *\n * @public\n */\n",
|
|
8742
|
+
"excerptTokens": [
|
|
8743
|
+
{
|
|
8744
|
+
"kind": "Content",
|
|
8745
|
+
"text": "export interface BasesConfigFileFilterNotClause "
|
|
8746
|
+
}
|
|
8747
|
+
],
|
|
8748
|
+
"fileUrlPath": "src/obsidian/internals/Bases/BasesConfigFileFilterNotClause.d.ts",
|
|
8749
|
+
"releaseTag": "Public",
|
|
8750
|
+
"name": "BasesConfigFileFilterNotClause",
|
|
8751
|
+
"preserveMemberOrder": false,
|
|
8752
|
+
"members": [
|
|
8753
|
+
{
|
|
8754
|
+
"kind": "PropertySignature",
|
|
8755
|
+
"canonicalReference": "obsidian-typings!BasesConfigFileFilterNotClause#not:member",
|
|
8756
|
+
"docComment": "/**\n * None of the following filters should match.\n *\n * @since\n *\n * 1.10.0\n *\n * @example\n *\n * ```ts { not: [ '*.md', '*.txt', ], }\n *\n * @public\n */\n",
|
|
8757
|
+
"excerptTokens": [
|
|
8758
|
+
{
|
|
8759
|
+
"kind": "Content",
|
|
8760
|
+
"text": "not: "
|
|
8761
|
+
},
|
|
8762
|
+
{
|
|
8763
|
+
"kind": "Reference",
|
|
8764
|
+
"text": "BasesConfigFileFilter",
|
|
8765
|
+
"canonicalReference": "obsidian!BasesConfigFileFilter:type"
|
|
8766
|
+
},
|
|
8767
|
+
{
|
|
8768
|
+
"kind": "Content",
|
|
8769
|
+
"text": "[]"
|
|
8770
|
+
},
|
|
8771
|
+
{
|
|
8772
|
+
"kind": "Content",
|
|
8773
|
+
"text": ";"
|
|
8774
|
+
}
|
|
8775
|
+
],
|
|
8776
|
+
"isReadonly": false,
|
|
8777
|
+
"isOptional": false,
|
|
8778
|
+
"releaseTag": "Public",
|
|
8779
|
+
"name": "not",
|
|
8780
|
+
"propertyTypeTokenRange": {
|
|
8781
|
+
"startIndex": 1,
|
|
8782
|
+
"endIndex": 3
|
|
8783
|
+
}
|
|
8784
|
+
}
|
|
8785
|
+
],
|
|
8786
|
+
"extendsTokenRanges": []
|
|
8787
|
+
},
|
|
8788
|
+
{
|
|
8789
|
+
"kind": "Interface",
|
|
8790
|
+
"canonicalReference": "obsidian-typings!BasesConfigFileFilterOrClause:interface",
|
|
8791
|
+
"docComment": "/**\n * BasesConfigFileFilter `or` clause.\n *\n * @unofficial\n *\n * @public\n */\n",
|
|
8792
|
+
"excerptTokens": [
|
|
8793
|
+
{
|
|
8794
|
+
"kind": "Content",
|
|
8795
|
+
"text": "export interface BasesConfigFileFilterOrClause "
|
|
8796
|
+
}
|
|
8797
|
+
],
|
|
8798
|
+
"fileUrlPath": "src/obsidian/internals/Bases/BasesConfigFileFilterOrClause.d.ts",
|
|
8799
|
+
"releaseTag": "Public",
|
|
8800
|
+
"name": "BasesConfigFileFilterOrClause",
|
|
8801
|
+
"preserveMemberOrder": false,
|
|
8802
|
+
"members": [
|
|
8803
|
+
{
|
|
8804
|
+
"kind": "PropertySignature",
|
|
8805
|
+
"canonicalReference": "obsidian-typings!BasesConfigFileFilterOrClause#or:member",
|
|
8806
|
+
"docComment": "/**\n * Some of the following filters should match.\n *\n * @since\n *\n * 1.10.0\n *\n * @example\n *\n * ```ts { or: [ '*.md', '*.txt', ], }\n *\n * @public\n */\n",
|
|
8807
|
+
"excerptTokens": [
|
|
8808
|
+
{
|
|
8809
|
+
"kind": "Content",
|
|
8810
|
+
"text": "or: "
|
|
8811
|
+
},
|
|
8812
|
+
{
|
|
8813
|
+
"kind": "Reference",
|
|
8814
|
+
"text": "BasesConfigFileFilter",
|
|
8815
|
+
"canonicalReference": "obsidian!BasesConfigFileFilter:type"
|
|
8816
|
+
},
|
|
8817
|
+
{
|
|
8818
|
+
"kind": "Content",
|
|
8819
|
+
"text": "[]"
|
|
8820
|
+
},
|
|
8821
|
+
{
|
|
8822
|
+
"kind": "Content",
|
|
8823
|
+
"text": ";"
|
|
8824
|
+
}
|
|
8825
|
+
],
|
|
8826
|
+
"isReadonly": false,
|
|
8827
|
+
"isOptional": false,
|
|
8828
|
+
"releaseTag": "Public",
|
|
8829
|
+
"name": "or",
|
|
8830
|
+
"propertyTypeTokenRange": {
|
|
8831
|
+
"startIndex": 1,
|
|
8832
|
+
"endIndex": 3
|
|
8833
|
+
}
|
|
8834
|
+
}
|
|
8835
|
+
],
|
|
8836
|
+
"extendsTokenRanges": []
|
|
8837
|
+
},
|
|
8688
8838
|
{
|
|
8689
8839
|
"kind": "Interface",
|
|
8690
8840
|
"canonicalReference": "obsidian-typings!BasesContext:interface",
|