@forge/manifest
7.5.2-next.0-experimental-10722bc7.7.0-next.13
out/interpolator/manifest-interpolator.d.tsout/interpolator/manifest-interpolator.d.ts+13
Index: package/out/interpolator/manifest-interpolator.d.ts
===================================================================
--- package/out/interpolator/manifest-interpolator.d.ts
+++ package/out/interpolator/manifest-interpolator.d.ts
@@ -0,0 +1,13 @@
+import { ManifestSchema } from '../schema/manifest';
+export declare class ManifestInterpolatorError extends Error {
+ constructor(message: string);
+}
+export declare enum InterpolatorType {
+ STRING_RESOURCE = 0,
+ ENVIRONMENT_VARIABLE = 1
+}
+export interface ManifestInterpolator {
+ type: InterpolatorType;
+ interpolate(manifest: ManifestSchema): ManifestSchema;
+}
+//# sourceMappingURL=manifest-interpolator.d.ts.map
\ No newline at end of file