crossnote 0.9.29 → 0.9.30

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.
@@ -0,0 +1,6 @@
1
+ import { ParserConfig } from '../notebook/types';
2
+ export declare function evalConfigJS(code: string): Promise<unknown>;
3
+ export type SandboxedParserConfig = ParserConfig & {
4
+ dispose: () => void;
5
+ };
6
+ export declare function createSandboxedParserConfig(code: string, defaults: ParserConfig): Promise<SandboxedParserConfig>;
@@ -29,7 +29,6 @@ export declare namespace Function {
29
29
  var prototype: Function;
30
30
  }
31
31
  export declare function isVSCodeWebExtension(): boolean;
32
- export declare function interpretJS(code: string): any;
33
32
  export declare function findClosingTagIndex(inputString: string, tagName: string, startIndex?: number): number;
34
33
  export declare function replaceVariablesInString(inputString: string, replacements?: {
35
34
  [key: string]: string;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};