@sourceloop/user-onboarding-client
Version:
Library for providing a smooth user onboarding
21 lines (17 loc) • 421 B
text/typescript
// Copyright (c) 2023 Sourcefuse Technologies
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
import {TourState} from './tour';
export interface SaveStateParameters {
tourId: string;
state: TourState;
}
export interface LoadStateParameters {
tourId: string;
sessionId: string;
}
export interface DeleteStateParameters {
tourId: string;
sessionId: string;
}