2023-07-01 10:41:54 +00:00
|
|
|
import {homepageEventHandlers, homepageSteps} from "./interface/exports.js";
|
2023-06-15 12:53:00 +00:00
|
|
|
import {introductionSteps} from "./introduction.js";
|
|
|
|
|
2023-07-01 10:41:54 +00:00
|
|
|
export enum TourId {
|
|
|
|
InterfaceHomepage = "interface-homepage",
|
|
|
|
Introduction = "introduction",
|
|
|
|
}
|
2023-06-15 12:53:00 +00:00
|
|
|
|
|
|
|
export const tourIdsAndSteps: Array<
|
|
|
|
[TourId, TourStepOptions[], TourStepEventHandler[]]
|
|
|
|
> = [
|
2023-07-01 10:41:54 +00:00
|
|
|
[TourId.Introduction, introductionSteps, []],
|
|
|
|
[TourId.InterfaceHomepage, homepageSteps, homepageEventHandlers],
|
2023-06-15 12:53:00 +00:00
|
|
|
];
|