ahdjs 0.0.9 → 0.0.11

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.
@@ -1,14 +1,15 @@
1
+ /**
2
+ * Copyright (C) 2020 Labs64 GmbH
3
+ *
4
+ * This source code is licensed under the European Union Public License, version 1.2
5
+ * located in the LICENSE file
6
+ */
7
+ import GuideChimp from "./GuideChimp";
1
8
  import "./index.scss";
2
- declare class AHDjs {
3
- private guideChimp;
4
- private appId;
5
- private contextToursMapData;
6
- constructor(applicationId: any, tour: any, options: any);
7
- updatePageUrl: (url: string, refetch: boolean) => Promise<void>;
8
- setTour: (tour: any) => void;
9
- beacons: (...args: any) => void;
10
- start: (...args: any) => void;
11
- stop: (...args: any) => Promise<void>;
12
- showInformation: (...args: any) => void;
13
- }
9
+ declare const AHDjs: {
10
+ (...args: any[]): GuideChimp;
11
+ prototype: GuideChimp;
12
+ plugins: Set<unknown>;
13
+ extend(plugin: any, ...args: any[]): any;
14
+ };
14
15
  export default AHDjs;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ahdjs",
3
- "version": "0.0.9",
3
+ "version": "0.0.11",
4
4
  "description": "",
5
5
  "main": "build/index.js",
6
6
  "types": "build/types/index.d.ts",