-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6237604
commit 707c439
Showing
5 changed files
with
33 additions
and
29 deletions.
There are no files selected for viewing
11 changes: 1 addition & 10 deletions
11
src/components/Carousel/DynamicSlides/UnitSlide/CarouselDataCard/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import { CarouselData } from "@components/Carousel/carouselData"; | ||
|
||
export interface SplideInstance { | ||
index: number; | ||
length: number; | ||
Components: { | ||
Autoplay: { | ||
pause: () => void; | ||
play: () => void; | ||
mount: () => void; | ||
isPaused: () => boolean; | ||
destroy: () => void; | ||
} | ||
} | ||
}; | ||
|
||
export interface UnitSlideProps extends CarouselData { | ||
splide: SplideInstance | null; | ||
}; |