mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
16 lines
428 B
TypeScript
16 lines
428 B
TypeScript
// Type definitions for Zynga EasyScroller
|
|
// Project: https://github.com/zynga/scroller
|
|
// Definitions by: Boris Yankov <https://github.com/borisyankov>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
|
|
/// <reference path="scroller.d.ts"/>
|
|
|
|
declare class EasyScroller {
|
|
constructor (content: any, options: ScrollerOptions);
|
|
|
|
render(): void;
|
|
reflow(): void;
|
|
bindEvents(): void;
|
|
}
|