bc-minecraft-molang 1.19.60-0 → 1.19.70-0

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.
@@ -1,7 +1,7 @@
1
1
  import { DefinedUsing } from "../Types/Defined Using/DefinedUsing";
2
2
  import { Using } from "../Types/Defined Using";
3
3
  /** Can either be a MolangSet or a MolangSet[] */
4
- export declare type MolangSetOptional = MolangSet | MolangFullSet;
4
+ export type MolangSetOptional = MolangSet | MolangFullSet;
5
5
  /** The interface for the molang set */
6
6
  export interface MolangSet {
7
7
  /** The set of contexts variables used*/
@@ -18,7 +18,7 @@ export declare namespace SyntaxCall {
18
18
  /**
19
19
  *
20
20
  */
21
- export declare type Syntax = string | SyntaxCall;
21
+ export type Syntax = string | SyntaxCall;
22
22
  /**
23
23
  *
24
24
  */
@@ -1,3 +1,3 @@
1
1
  import { Types } from "bc-minecraft-bedrock-types";
2
2
  /**The base type of a molang data item*/
3
- export declare type Data = Types.Identifiable & Types.Documentated;
3
+ export type Data = Types.Identifiable & Types.Documentated;
@@ -45,4 +45,4 @@ export declare namespace MolangData {
45
45
  /**
46
46
  * The list of all types
47
47
  */
48
- export declare type MolangDataSetKey = "Animations" | "AnimationsControllers" | "Blocks" | "Entities" | "FeaturesRules" | "General" | "Items" | "Particles" | "RenderControllers";
48
+ export type MolangDataSetKey = "Animations" | "AnimationsControllers" | "Blocks" | "Entities" | "FeaturesRules" | "General" | "Items" | "Particles" | "RenderControllers";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bc-minecraft-molang",
3
- "version": "1.19.60-0",
3
+ "version": "1.19.70-0",
4
4
  "description": "The library designed to deal with minecraft bedrock molang",
5
5
  "main": "./lib/src/main.js",
6
6
  "types": "./lib/src/main.d.ts",
@@ -39,18 +39,18 @@
39
39
  "lib/src/**/*.d.ts"
40
40
  ],
41
41
  "devDependencies": {
42
- "@types/chai": "^4.3.3",
43
- "@types/mocha": "^10.0.0",
44
- "@types/node": "^18.7.16",
45
- "chai": "^4.3.6",
46
- "mocha": "^10.0.0",
42
+ "@types/chai": "^4.3.4",
43
+ "@types/mocha": "^10.0.1",
44
+ "@types/node": "^18.15.11",
45
+ "chai": "^4.3.7",
46
+ "mocha": "^10.2.0",
47
47
  "mocha-junit-reporter": "^2.2.0",
48
- "rimraf": "^3.0.2",
49
- "ts-loader": "^9.2.6",
48
+ "rimraf": "^5.0.0",
49
+ "ts-loader": "^9.4.2",
50
50
  "ts-node": "^10.9.1",
51
- "typescript": "^4.8.2"
51
+ "typescript": "^5.0.4"
52
52
  },
53
53
  "dependencies": {
54
- "bc-minecraft-bedrock-types": "^1.4.11"
54
+ "bc-minecraft-bedrock-types": "^1.19.50-0"
55
55
  }
56
56
  }