mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-12 04:50:18 +00:00
lory.js: Fix compile errors
This commit is contained in:
Vendored
+6
-6
@@ -123,30 +123,30 @@ interface LoryOptions {
|
||||
/**
|
||||
* executed before initialisation (first in setup function)
|
||||
*/
|
||||
beforeInit?: <T>() => T;
|
||||
beforeInit?(): any;
|
||||
|
||||
/**
|
||||
* executed after initialisation (end of setup function)
|
||||
*/
|
||||
afterInit?: <T>() => T;
|
||||
afterInit?(): any;
|
||||
|
||||
/**
|
||||
* executed on click of prev controls (prev function)
|
||||
*/
|
||||
beforePrev?: <T>() => T;
|
||||
beforePrev?(): any;
|
||||
|
||||
/**
|
||||
* executed on click of next controls (next function)
|
||||
*/
|
||||
beforeNext?: <T>() => T;
|
||||
beforeNext?(): any;
|
||||
|
||||
/**
|
||||
* executed on touch attempt (touchstart)
|
||||
*/
|
||||
beforeTouch?: <T>() => T;
|
||||
beforeTouch?(): any;
|
||||
|
||||
/**
|
||||
* executed on every resize event
|
||||
*/
|
||||
beforeResize?: <T>() => T;
|
||||
beforeResize?(): any;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user