@sourceloop/user-onboarding-client
Version:
Library for providing a smooth user onboarding
14 lines (12 loc) • 349 B
text/typescript
// Copyright (c) 2023 Sourcefuse Technologies
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
import Step from 'shepherd.js/src/types/step';
export interface TourButton {
action?: () => Step.StepOptionsButton['action'];
classes?: string;
text: string;
key?: string;
secondary?: boolean;
}