mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
18 lines
586 B
TypeScript
18 lines
586 B
TypeScript
// Type definitions for jquery.tile.js 1.1.0
|
|
// Project: https://github.com/urin/jquery.tile.js
|
|
// Definitions by: Shunsuke Ohtani <https://github.com/zaneli>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.3
|
|
|
|
/// <reference types="jquery" />
|
|
|
|
interface JQuery {
|
|
/**
|
|
* Align the height of the largest of the elements arranged in the same row.
|
|
* if columns is not specified, align the height of the largest of the all elements.
|
|
*
|
|
* @param columns Number of elements in a row
|
|
*/
|
|
tile(columns?: number): void;
|
|
}
|