You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
474 B
13 lines
474 B
import Tour from './src/tour.vue';
|
|
import TourStep from './src/step.vue';
|
|
import type { SFCWithInstall } from 'element-plus/es/utils';
|
|
export declare const ElTour: SFCWithInstall<typeof Tour> & {
|
|
TourStep: typeof TourStep;
|
|
};
|
|
export declare const ElTourStep: SFCWithInstall<typeof TourStep>;
|
|
export default ElTour;
|
|
export * from './src/tour';
|
|
export * from './src/step';
|
|
export * from './src/content';
|
|
export type { TourMask, TourGap, TourBtnProps } from './src/types';
|