mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Added interface for rowGrid.js
This commit is contained in:
Vendored
+17
@@ -0,0 +1,17 @@
|
||||
// Type definitions for jQuery rowGrid.js plugin (v1.0.2)
|
||||
// Project: https://github.com/brunjo/rowGrid.js
|
||||
// Definitions by: Vinayak Garg <https://github.com/vinayak-garg>
|
||||
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
||||
|
||||
/// <reference path="../jquery/jquery.d.ts" />
|
||||
|
||||
interface JQueryRowGridJSOptions {
|
||||
minMargin?: number;
|
||||
maxMargin?: number;
|
||||
itemSelector: string;
|
||||
}
|
||||
|
||||
interface JQuery {
|
||||
rowGrid(options?: JQueryRowGridJSOptions): JQuery;
|
||||
rowGrid(appended: string): JQuery;
|
||||
}
|
||||
Reference in New Issue
Block a user