@absolutejs/absolute 0.19.0-beta.940 → 0.19.0-beta.941

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.
@@ -20,6 +20,8 @@ export type ComponentFingerprint = {
20
20
  importsArraySig: string;
21
21
  hostDirectivesSig: string;
22
22
  animationsArraySig: string;
23
+ providersArraySig: string;
24
+ viewProvidersArraySig: string;
23
25
  };
24
26
  export type FastHmrSuccess = {
25
27
  ok: true;
@@ -40,6 +42,7 @@ export type FastHmrFailure = {
40
42
  export type FastHmrResult = FastHmrSuccess | FastHmrFailure;
41
43
  export declare const takePendingModule: (id: string) => string | undefined;
42
44
  export declare const recordFingerprint: (id: string, fp: ComponentFingerprint) => void;
45
+ export declare const primeComponentFingerprint: (componentFilePath: string) => Promise<void>;
43
46
  export declare const invalidateFingerprintCache: () => void;
44
47
  export type TryFastHmrParams = {
45
48
  componentFilePath: string;
package/package.json CHANGED
@@ -385,5 +385,5 @@
385
385
  ]
386
386
  }
387
387
  },
388
- "version": "0.19.0-beta.940"
388
+ "version": "0.19.0-beta.941"
389
389
  }