obsidian-typings 2.43.2 → 2.43.3
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/types.d.cts +3 -3
- package/package.json +1 -1
package/dist/cjs/types.d.cts
CHANGED
|
@@ -623,9 +623,9 @@ declare module "obsidian" {
|
|
|
623
623
|
}
|
|
624
624
|
}
|
|
625
625
|
declare module "obsidian" {
|
|
626
|
-
function loadMermaid(): Promise<Mermaid>;
|
|
627
|
-
function loadPdfJs(): Promise<typeof pdfjsLib>;
|
|
628
|
-
function loadPrism(): Promise<typeof Prism$1>;
|
|
626
|
+
export function loadMermaid(): Promise<Mermaid>;
|
|
627
|
+
export function loadPdfJs(): Promise<typeof pdfjsLib>;
|
|
628
|
+
export function loadPrism(): Promise<typeof Prism$1>;
|
|
629
629
|
}
|
|
630
630
|
declare module "obsidian" {
|
|
631
631
|
interface AbstractInputSuggest<T> extends PopoverSuggest<T> {
|