UNPKG

@sourceloop/user-onboarding-client

Version:

Library for providing a smooth user onboarding

22 lines (18 loc) 449 B
// Copyright (c) 2023 Sourcefuse Technologies // // This software is released under the MIT License. // https://opensource.org/licenses/MIT 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; }