DefinitelyTyped/Definitions/impress-0.5.d.ts
2012-10-19 19:51:09 +03:00

13 lines
352 B
TypeScript

// Type definitions for Impress.js 0.5
// Project: https://github.com/bartaz/impress.js
// Definitions: https://github.com/borisyankov/DefinitelyTyped
interface Impress {
init(): void;
getStep(step: any): any;
goto(element: any, duration?: number): any;
prev(): any;
next(): any;
}
declare function impress(): Impress;