Skip to content

Commit 96cd50d

Browse files
committed
LInting
1 parent 9208d64 commit 96cd50d

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

src/Types.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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>;

vite.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ export default defineConfig({
3838
dts({
3939
insertTypesEntry: true,
4040
cleanVueFileName: true,
41-
rollupTypes: true,
4241
}),
4342
],
4443
server: {

0 commit comments

Comments
 (0)