DefinitelyTyped/types/impress/index.d.ts
2017-08-20 15:37:53 -07:00

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;