mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Restructure files and add missing declarations * Add JQuery declarations * Restructure tests * Add carousel tests * Add more tests and missing JQuery declarations * Add waves declaration and a test * Add static init methods and tests * allow jquery and cash object to be passed to init * Remove redundant reference * Clean up * Clean up * Clean up and add tests * Clean up and add tests
10 lines
332 B
TypeScript
10 lines
332 B
TypeScript
declare namespace Waves {
|
|
/**
|
|
* Attach Waves to an input element (or any element which doesn't
|
|
* bubble mouseup/mousedown events).
|
|
* Intended to be used with dynamically loaded forms/inputs, or
|
|
* where the user doesn't want a delegated click handler.
|
|
*/
|
|
function attach(element: Element): void;
|
|
}
|