Comparing version 3.5.2 to 3.5.3
@@ -61,8 +61,8 @@ declare type TourEventKind = "tour_started" | "tour_completed" | "tour_advanced" | "tour_cancelled" | "tour_interrupted" | "error"; | ||
anonymous: () => void; | ||
on(fn: (ev: TourEvent | ChecklistEvent, info: TourEventInfo | ChecklistEventInfo) => void): void; | ||
on(kind: TourEventKind, fn: (ev: TourEvent, info: TourEventInfo) => void): void; | ||
on(kind: ChecklistEventKind, fn: (ev: ChecklistEvent, info: ChecklistEventInfo) => void): void; | ||
off(fn: (ev: TourEvent | ChecklistEvent, info: TourEventInfo | ChecklistEventInfo) => void): void; | ||
off(kind: TourEventKind, fn: (ev: TourEvent, info: TourEventInfo) => void): void; | ||
off(kind: ChecklistEventKind, fn: (ev: ChecklistEvent, info: ChecklistEventInfo) => void): void; | ||
on(fn: (ev: TourEvent | ChecklistEvent, info: TourEventInfo | ChecklistEventInfo) => void, context?: any): void; | ||
on(kind: TourEventKind, fn: (ev: TourEvent, info: TourEventInfo) => void, context?: any): void; | ||
on(kind: ChecklistEventKind, fn: (ev: ChecklistEvent, info: ChecklistEventInfo) => void, context?: any): void; | ||
off(fn: (ev: TourEvent | ChecklistEvent, info: TourEventInfo | ChecklistEventInfo) => void, context?: any): void; | ||
off(kind: TourEventKind, fn: (ev: TourEvent, info: TourEventInfo) => void, context?: any): void; | ||
off(kind: ChecklistEventKind, fn: (ev: ChecklistEvent, info: ChecklistEventInfo) => void, context?: any): void; | ||
openChecklist: () => void; | ||
@@ -69,0 +69,0 @@ closeChecklist: () => void; |
@@ -79,11 +79,14 @@ /** | ||
info: TourEventInfo | ChecklistEventInfo | ||
) => void | ||
) => void, | ||
context?: any | ||
): void, | ||
on( | ||
kind: TourEventKind, | ||
fn: (ev: TourEvent, info: TourEventInfo) => void | ||
fn: (ev: TourEvent, info: TourEventInfo) => void, | ||
context?: any | ||
): void, | ||
on( | ||
kind: ChecklistEventKind, | ||
fn: (ev: ChecklistEvent, info: ChecklistEventInfo) => void | ||
fn: (ev: ChecklistEvent, info: ChecklistEventInfo) => void, | ||
context?: any | ||
): void, | ||
@@ -94,11 +97,14 @@ off( | ||
info: TourEventInfo | ChecklistEventInfo | ||
) => void | ||
) => void, | ||
context?: any | ||
): void, | ||
off( | ||
kind: TourEventKind, | ||
fn: (ev: TourEvent, info: TourEventInfo) => void | ||
fn: (ev: TourEvent, info: TourEventInfo) => void, | ||
context?: any | ||
): void, | ||
off( | ||
kind: ChecklistEventKind, | ||
fn: (ev: ChecklistEvent, info: ChecklistEventInfo) => void | ||
fn: (ev: ChecklistEvent, info: ChecklistEventInfo) => void, | ||
context?: any | ||
): void, | ||
@@ -105,0 +111,0 @@ openChecklist: () => void, |
{ | ||
"name": "helphero", | ||
"version": "3.5.2", | ||
"version": "3.5.3", | ||
"description": "Offical HelpHero SDK for browsers", | ||
@@ -5,0 +5,0 @@ "repository": "git://github.com/HelpHero/helphero-javascript.git", |
10410
245