@livetiles/reach-plugin-types 0.5.0-preview.255 → 0.5.0-preview.258
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/lib/index.d.ts +3 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -2918,7 +2918,9 @@ declare module "libs/reach/util/common/src/analytics/AnalyticsContextProvider" {
|
|
|
2918
2918
|
export type ReachAnalytics = Analytics & AnalyticsModule & SearchAnalytics & ActivityAnalytics;
|
|
2919
2919
|
export const AnalyticsContext: import("react").Context<ReachAnalytics>;
|
|
2920
2920
|
export function useAnalyticsContext(): ReachAnalytics;
|
|
2921
|
-
export const AnalyticsLibraryContextProvider: FC
|
|
2921
|
+
export const AnalyticsLibraryContextProvider: FC<{
|
|
2922
|
+
appName?: string;
|
|
2923
|
+
}>;
|
|
2922
2924
|
export const AnalyticsContextProvider: FC;
|
|
2923
2925
|
}
|
|
2924
2926
|
declare module "libs/reach/util/common/src/analytics/useAnalyticsViewTrack" {
|