crossnote 0.9.11 → 0.9.12
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/README.md +5 -1
- package/out/cjs/index.cjs +120 -117
- package/out/dependencies/README.md +1 -1
- package/out/dependencies/katex/katex.min.css +1 -1
- package/out/dependencies/mermaid/mermaid.min.js +594 -343
- package/out/esm/index.mjs +123 -120
- package/out/types/src/prism/prism.d.ts +1317 -1524
- package/out/types/src/tools/sharp.d.ts +1 -0
- package/out/types/src/utility.d.ts +1 -1
- package/out/types/tsconfig.tsbuildinfo +1 -1
- package/out/webview/backlinks.js +3 -3
- package/out/webview/preview.js +6 -6
- package/package.json +18 -10
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function svgElementToPNGFile(svgElement: string, pngFilePath: string): Promise<string>;
|
|
@@ -4,7 +4,7 @@ import * as temp from 'temp';
|
|
|
4
4
|
import { JsonObject } from 'type-fest';
|
|
5
5
|
import * as vscode from 'vscode';
|
|
6
6
|
import { BlockInfo } from './lib/block-info';
|
|
7
|
-
export declare function tempOpen(options:
|
|
7
|
+
export declare function tempOpen(options: temp.AffixOptions): Promise<temp.OpenFile>;
|
|
8
8
|
export declare function openFile(filePath: string): child_process.ChildProcess | undefined;
|
|
9
9
|
export declare function sleep(ms: number): Promise<void>;
|
|
10
10
|
export declare function parseYAML(yaml?: string): JsonObject;
|