ahdjs 0.0.17 → 0.0.19
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/css/index.css +1 -1
- package/build/index.js +2 -2
- package/build/index.js.map +1 -1
- package/build/types/index.d.ts +3 -0
- package/package.json +1 -1
package/build/types/index.d.ts
CHANGED
|
@@ -13,10 +13,13 @@ declare class AHD extends GuideChimp {
|
|
|
13
13
|
getHelpContent(url: string, refetch: boolean): Promise<any>;
|
|
14
14
|
showPageTour(url: string, refetch: boolean): Promise<void>;
|
|
15
15
|
showPageBeacons(url: string, refetch: boolean): Promise<void>;
|
|
16
|
+
clearCachedData(): Promise<void>;
|
|
16
17
|
private generateDescription;
|
|
17
18
|
private getApplicabeDataForUrl;
|
|
18
19
|
private fetchAndCacheData;
|
|
19
20
|
private fetchAndCacheHelpData;
|
|
21
|
+
private fetchAndCachePageVisitsData;
|
|
22
|
+
private markPageVisited;
|
|
20
23
|
}
|
|
21
24
|
declare const AHDjs: {
|
|
22
25
|
(...args: any[]): AHD;
|