sval 0.6.7 → 0.6.9

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.
@@ -11,7 +11,7 @@ declare class Sval {
11
11
  exports: Record<string, any>;
12
12
  constructor(options?: SvalOptions);
13
13
  import(nameOrModules: string | Record<string, any>, mod?: any): void;
14
- parse(code: string, parser?: (code: string, options: SvalOptions) => Node): Node;
14
+ parse(code: string, parser?: (code: string, options: Options) => Node): Node;
15
15
  run(code: string | Node): void;
16
16
  }
17
17
  export default Sval;
@@ -18,5 +18,6 @@ export declare const NEWTARGET: string;
18
18
  export declare const PRIVATE: string;
19
19
  export declare const NOINIT: string;
20
20
  export declare const DEADZONE: string;
21
+ export declare const OPTCHAIN: string;
21
22
  export declare const IMPORT: string;
22
23
  export declare const EXPORTS: string;