1
Fork 0
tildes-shepherd/source/tours/exports.ts

15 lines
448 B
TypeScript
Raw Normal View History

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