// Start a tourmanager.start('feature-tour');// Stop a tourmanager.stop('feature-tour');// Pause a tourmanager.pause('feature-tour');// Resume a tourmanager.resume('feature-tour');
// Check if tour is runningconst isRunning = manager.isRunning('feature-tour');// Get current stepconst currentStep = manager.getCurrentStep('feature-tour');// Get tour progressconst progress = manager.getProgress('feature-tour');
// Register multiple toursmanager.register(tour1);manager.register(tour2);manager.register(tour3);// Start all toursmanager.startAll();// Stop all toursmanager.stopAll();// Get all registered toursconst tours = manager.getTours();