Impress.js definitions and tests added

This commit is contained in:
Boris Yankov
2012-10-19 19:51:09 +03:00
parent 8938dffa1e
commit bae2e02233
3 changed files with 24 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
// 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;