123456789101112131415161718 |
- declare module '@splidejs/splide' {
- /**
- * The interface for the Drag component.
- *
- * @since 3.0.0
- */
- interface DragComponent extends BaseComponent {
- }
- /**
- * The interface for all components.
- *
- * @since 3.0.0
- */
- interface Components {
- Drag: DragComponent,
- }
- }
|