pup-recorder 0.2.1 → 0.2.3
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/build.ts +1 -2
- package/dist/_tsup-dts-rollup.d.ts +8 -4
- package/dist/app.cjs +15 -1334
- package/dist/chunk-SD4UOGME.js +2 -0
- package/dist/cli.js +2 -30
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -470
- package/package.json +2 -1
- package/Cargo.lock +0 -281
- package/Cargo.toml +0 -23
- package/dist/chunk-A5IYURQQ.js +0 -565
- package/rust-toolchain.toml +0 -10
package/build.ts
CHANGED
|
@@ -41,8 +41,6 @@ export { AbortQuery as AbortQuery_alias_1 }
|
|
|
41
41
|
|
|
42
42
|
export declare function advanceVirtualTime(cdp: Debugger, budget: number): Promise<void>;
|
|
43
43
|
|
|
44
|
-
export declare const app: string | undefined;
|
|
45
|
-
|
|
46
44
|
declare type AsyncTask = () => Promise<void> | void;
|
|
47
45
|
export { AsyncTask }
|
|
48
46
|
export { AsyncTask as AsyncTask_alias_1 }
|
|
@@ -90,8 +88,6 @@ export declare interface AudioEncoderOptions {
|
|
|
90
88
|
muxer: FormatMuxer;
|
|
91
89
|
}
|
|
92
90
|
|
|
93
|
-
export declare const basedir: string;
|
|
94
|
-
|
|
95
91
|
export declare function buildWrapperHTML(targetURL: string, size: Size): string;
|
|
96
92
|
|
|
97
93
|
export declare const canIUseGPU: Promise<boolean>;
|
|
@@ -296,6 +292,10 @@ declare const PUP_ARGS_KEY = "--pup-priv-args";
|
|
|
296
292
|
export { PUP_ARGS_KEY }
|
|
297
293
|
export { PUP_ARGS_KEY as PUP_ARGS_KEY_alias_1 }
|
|
298
294
|
|
|
295
|
+
declare const pupApp: string;
|
|
296
|
+
export { pupApp }
|
|
297
|
+
export { pupApp as pupApp_alias_1 }
|
|
298
|
+
|
|
299
299
|
declare const pupDisableGPU: boolean;
|
|
300
300
|
export { pupDisableGPU }
|
|
301
301
|
export { pupDisableGPU as pupDisableGPU_alias_1 }
|
|
@@ -311,6 +311,10 @@ declare interface PupOptions extends Partial<RenderOptions> {
|
|
|
311
311
|
export { PupOptions }
|
|
312
312
|
export { PupOptions as PupOptions_alias_1 }
|
|
313
313
|
|
|
314
|
+
declare const pupPkgRoot: string;
|
|
315
|
+
export { pupPkgRoot }
|
|
316
|
+
export { pupPkgRoot as pupPkgRoot_alias_1 }
|
|
317
|
+
|
|
314
318
|
declare type PupProgressCallback = (progress: number) => Promise<void> | void;
|
|
315
319
|
export { PupProgressCallback }
|
|
316
320
|
export { PupProgressCallback as PupProgressCallback_alias_1 }
|