@enhance-eng/sandbox 0.3.8 → 0.3.16
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.
- package/dist/assets/enhance-runtime.js +1 -1
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +1 -1
- package/dist/index.d.ts +54 -5
- package/dist/index.js +1 -1
- package/dist/postinstall.d.ts +2 -0
- package/dist/postinstall.js +1 -1
- package/dist/sw-enhance.js +1 -1
- package/dist/vite/index.d.ts +5 -0
- package/dist/vite/index.js +1 -0
- package/package.json +11 -11
- package/LICENSE +0 -21
- package/README.md +0 -59
- package/bin/enhance-sandbox.js +0 -2
- package/dist/index.cjs +0 -1
- package/dist/index.d.cts +0 -23
- package/dist/manifest.json +0 -7
package/dist/index.d.cts
DELETED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import * as _enhance_sandbox_runtime from '@enhance-sandbox/runtime';
|
|
2
|
-
import { Enhance as Enhance$1 } from '@enhance-sandbox/runtime';
|
|
3
|
-
export { EnhanceController, EnhanceOptions, EnhanceStatus } from '@enhance-sandbox/runtime';
|
|
4
|
-
|
|
5
|
-
interface EnhanceAssetManifest {
|
|
6
|
-
serviceWorker: string;
|
|
7
|
-
runtime: string;
|
|
8
|
-
version: string;
|
|
9
|
-
serviceWorkerDigest: string | null;
|
|
10
|
-
runtimeDigest: string | null;
|
|
11
|
-
}
|
|
12
|
-
declare const Enhance: {
|
|
13
|
-
init(options: Parameters<typeof Enhance$1.init>[0]): _enhance_sandbox_runtime.EnhanceController;
|
|
14
|
-
serviceWorkerURL(): string;
|
|
15
|
-
runtimeURL(): string;
|
|
16
|
-
assetManifest(): EnhanceAssetManifest;
|
|
17
|
-
};
|
|
18
|
-
declare function getAssetManifest(): EnhanceAssetManifest;
|
|
19
|
-
declare function resolveServiceWorkerPath(): string;
|
|
20
|
-
declare function serviceWorkerURL(): string;
|
|
21
|
-
declare function runtimeURL(): string;
|
|
22
|
-
|
|
23
|
-
export { Enhance, type EnhanceAssetManifest, getAssetManifest, resolveServiceWorkerPath, runtimeURL, serviceWorkerURL };
|
package/dist/manifest.json
DELETED