UNPKG

@taiga-ui/cdk

Version:

Base library for creating Angular components and applications using Taiga UI principles regarding of actual visual appearance

10 lines (9 loc) 293 B
export interface TuiSwipeEvent { readonly direction: TuiSwipeDirection; readonly events: [TouchEvent, TouchEvent]; } export type TuiSwipeDirection = 'bottom' | 'left' | 'right' | 'top'; export interface TuiSwipeOptions { readonly threshold: number; readonly timeout: number; }