mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
17 lines
515 B
TypeScript
17 lines
515 B
TypeScript
// 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/DefinitelyTyped/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;
|
|
} |