mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
49 lines
1.4 KiB
TypeScript
49 lines
1.4 KiB
TypeScript
// Type definitions for iScroll Lite 4.1
|
|
// Project: http://cubiq.org/iscroll-4
|
|
// Definitions by: Boris Yankov <https://github.com/borisyankov/>, Christiaan Rakowski <https://github.com/csrakowski/>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
|
|
interface iScrollEvent {
|
|
(e: Event): void;
|
|
}
|
|
|
|
interface iScrollOptions {
|
|
hScroll?: boolean;
|
|
vScroll?: boolean;
|
|
x?: number;
|
|
y?: number;
|
|
bounce?: boolean;
|
|
bounceLock?: boolean;
|
|
momentum?: boolean;
|
|
lockDirection?: boolean;
|
|
useTransform?: boolean;
|
|
useTransition?: boolean;
|
|
|
|
// Events
|
|
onRefresh?: iScrollEvent;
|
|
onBeforeScrollStart?: iScrollEvent;
|
|
onScrollStart?: iScrollEvent;
|
|
onBeforeScrollMove?: iScrollEvent;
|
|
onScrollMove?: iScrollEvent;
|
|
onBeforeScrollEnd?: iScrollEvent;
|
|
onScrollEnd?: iScrollEvent;
|
|
onTouchEnd?: iScrollEvent;
|
|
onDestroy?: iScrollEvent;
|
|
}
|
|
|
|
declare class iScroll {
|
|
|
|
constructor (element: string, options?: iScrollOptions);
|
|
constructor (element: HTMLElement, options?: iScrollOptions);
|
|
|
|
destroy(): void;
|
|
refresh(): void;
|
|
scrollTo(x: number, y: number, time?: number, relative?: boolean): void;
|
|
scrollToElement(element: string, time?: number): void;
|
|
scrollToElement(element: HTMLElement, time?: number): void;
|
|
disable(): void;
|
|
enable(): void;
|
|
stop(): void;
|
|
}
|