npm package diff

Package: @forge/manifest

Versions: 7.7.0-next.12 - 7.5.2-next.0-experimental-204139e

File: package/out/utils/manifest-parser.d.ts

Index: package/out/utils/manifest-parser.d.ts
===================================================================
--- package/out/utils/manifest-parser.d.ts
+++ package/out/utils/manifest-parser.d.ts
@@ -1,14 +1,16 @@
-import { ManifestInterpolatorManager } from '../interpolator/manifest-interpolator-manager';
+import { ManifestSchema } from '../schema/manifest';
 export declare class ManifestParserError extends Error {
     constructor(message: string);
     getAttributes(): {
         isUserError: boolean;
     };
 }
 export declare class ManifestParser {
-    private manifestInterpolator;
-    constructor(manifestInterpolator: ManifestInterpolatorManager);
-    parseManifest(manifest: string): import("../index").ManifestSchema;
+    private readonly envVarsRecord;
+    private envVarsToReplace;
+    constructor(envVarsRecord?: Record<string, string | undefined>);
+    parseManifest(manifest: string): ManifestSchema;
     parseManifestAsString: (manifest: string) => string;
+    private environmentVariableReviver;
 }
 //# sourceMappingURL=manifest-parser.d.ts.map
\ No newline at end of file