splide.d.ts 299 B

123456789101112131415161718
  1. declare module '@splidejs/splide' {
  2. /**
  3. * The interface for the Drag component.
  4. *
  5. * @since 3.0.0
  6. */
  7. interface DragComponent extends BaseComponent {
  8. }
  9. /**
  10. * The interface for all components.
  11. *
  12. * @since 3.0.0
  13. */
  14. interface Components {
  15. Drag: DragComponent,
  16. }
  17. }