@mojir/lits 1.2.2-alpha.3 → 1.2.2-alpha.4

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.
@@ -15,7 +15,6 @@ export interface LazyValue {
15
15
  }
16
16
  export interface JsFunction {
17
17
  fn: (...args: any[]) => unknown;
18
- [key: string]: unknown;
19
18
  }
20
19
  export interface LitsParams {
21
20
  globalContext?: Context;
@@ -8,7 +8,7 @@ export { normalExpressionKeys, specialExpressionKeys } from './builtin';
8
8
  export { reservedNames } from './reservedNames';
9
9
  export { Lits } from './Lits/Lits';
10
10
  export { type LitsError, isLitsError } from './errors';
11
- export type { LitsParams, LitsRuntimeInfo, LazyValue } from './Lits/Lits';
11
+ export type { LitsParams, LitsRuntimeInfo, LazyValue, JsFunction } from './Lits/Lits';
12
12
  export { createNativeJsFunction } from './utils';
13
13
  export { apiReference, isDatatypeReference, isFunctionReference, isNormalExpressionArgument, isShorthandReference, isSpecialExpressionArgument, isTypedValue } from '../reference';
14
14
  export type { Argument, CommonReference, DatatypeReference, FunctionReference, Reference, ShorthandReference } from '../reference';
@@ -2827,7 +2827,7 @@ var mathNormalExpression = {
2827
2827
  },
2828
2828
  };
2829
2829
 
2830
- var version = "1.2.2-alpha.3";
2830
+ var version = "1.2.2-alpha.4";
2831
2831
 
2832
2832
  var uuidTemplate = 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx';
2833
2833
  var xyRegexp = /[xy]/g;