mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
15 lines
410 B
TypeScript
15 lines
410 B
TypeScript
// Type definitions for Impress.js 0.5
|
|
// Project: https://github.com/bartaz/impress.js
|
|
// Definitions by: Boris Yankov <https://github.com/borisyankov>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
|
|
interface Impress {
|
|
init(): void;
|
|
getStep(step: any): any;
|
|
goto(element: any, duration?: number): any;
|
|
prev(): any;
|
|
next(): any;
|
|
}
|
|
|
|
declare function impress(): Impress; |