File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -143,10 +143,12 @@ export interface VTourExposedMethods {
143143 stopTour : ( ) => void ;
144144
145145 /** Navigate to a specific step by index */
146- goToStep : ( _stepIndex : number ) => Promise < void > ;
146+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
147+ goToStep : ( stepIndex : number ) => Promise < void > ;
147148
148149 /** Reset tour state and optionally restart */
149- resetTour : ( _shouldRestart ?: boolean ) => void ;
150+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
151+ resetTour : ( shouldRestart ?: boolean ) => void ;
150152
151153 /** Update tooltip position */
152154 updatePosition : ( ) => Promise < void > ;
Original file line number Diff line number Diff line change @@ -38,7 +38,6 @@ export default defineConfig({
3838 dts ( {
3939 insertTypesEntry : true ,
4040 cleanVueFileName : true ,
41- rollupTypes : true ,
4241 } ) ,
4342 ] ,
4443 server : {
You can’t perform that action at this time.
0 commit comments