crossnote 0.9.18 → 0.9.20
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/out/cjs/index.cjs +159 -159
- package/out/esm/index.mjs +150 -150
- package/out/types/src/utility.d.ts +2 -0
- package/out/types/test/parser-config-security.test.d.ts +1 -0
- package/out/types/tsconfig.tsbuildinfo +1 -1
- package/out/webview/preview.js +135 -135
- package/package.json +2 -2
|
@@ -5,6 +5,8 @@ import * as vscode from 'vscode';
|
|
|
5
5
|
import { BlockInfo } from './lib/block-info';
|
|
6
6
|
export declare function tempOpen(options: temp.AffixOptions): Promise<temp.OpenFile>;
|
|
7
7
|
export declare function openFile(filePath: string): child_process.ChildProcess | undefined;
|
|
8
|
+
export declare function isWSL(): boolean;
|
|
9
|
+
export declare function toFileURL(filePath: string): string;
|
|
8
10
|
export declare function sleep(ms: number): Promise<void>;
|
|
9
11
|
export declare function parseYAML(yaml?: string): JsonObject;
|
|
10
12
|
export declare function setCrossnoteBuildDirectory(path: string): void;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|