Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 443 Bytes

dragscroll.api.md

File metadata and controls

18 lines (14 loc) · 443 Bytes

API Report File for "@svelte-put/dragscroll"

Do not edit this file. It is a report generated by API Extractor.

import type { Action } from 'svelte/action';

// @public
export const dragscroll: Action<HTMLElement, Partial<DragScrollParameters>>;

// @public
export interface DragScrollParameters {
  axis: 'x' | 'y' | 'both';
  cursor: boolean;
  enabled: boolean;
  event: 'mouse' | 'pointer';
}