UNPKG

@sourceloop/user-onboarding-client

Version:

Library for providing a smooth user onboarding

15 lines 364 B
import { TourStep } from './tour-step'; export interface SaveTourParameters { tourId: string; tourSteps: TourStep[]; styleSheet: string; } export interface LoadTourParameters { sessionId: string; tourId: string; } export interface DeleteTourParameters { sessionId: string; tourId: string; } //# sourceMappingURL=tour-parameters.d.ts.map