@eggjs/typings 4.1.2-beta.25 → 4.1.2-beta.27

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.
Files changed (2) hide show
  1. package/dist/global.d.ts +5 -0
  2. package/package.json +2 -2
package/dist/global.d.ts CHANGED
@@ -3,6 +3,11 @@ import { BundleModuleLoader, ModuleImporter } from "./index.js";
3
3
  //#region src/global.d.ts
4
4
  declare global {
5
5
  var __EGG_BUNDLE_MODULE_LOADER__: BundleModuleLoader | undefined;
6
+ /**
7
+ * Tegg manifest inlined into a standalone worker bundle. Kept as `unknown`
8
+ * to avoid coupling typings to the tegg loader package.
9
+ */
10
+ var __EGG_BUNDLE_MANIFEST__: unknown;
6
11
  var __EGG_MODULE_IMPORTER__: ModuleImporter | undefined;
7
12
  /**
8
13
  * Synchronous require bound to the bundle output directory, installed by the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eggjs/typings",
3
- "version": "4.1.2-beta.25",
3
+ "version": "4.1.2-beta.27",
4
4
  "description": "Shared typings for egg projects",
5
5
  "keywords": [
6
6
  "egg",
@@ -43,7 +43,7 @@
43
43
  },
44
44
  "dependencies": {},
45
45
  "devDependencies": {
46
- "@eggjs/tsconfig": "3.1.2-beta.25",
46
+ "@eggjs/tsconfig": "3.1.2-beta.27",
47
47
  "typescript": "^5.9.3"
48
48
  },
49
49
  "engines": {