mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
19 lines
524 B
TypeScript
19 lines
524 B
TypeScript
// Type definitions for jQuery rowGrid.js plugin 1.0
|
|
// Project: https://github.com/brunjo/rowGrid.js
|
|
// Definitions by: Vinayak Garg <https://github.com/vinayak-garg>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.3
|
|
|
|
/// <reference types="jquery" />
|
|
|
|
interface JQueryRowGridJSOptions {
|
|
minMargin?: number;
|
|
maxMargin?: number;
|
|
itemSelector: string;
|
|
}
|
|
|
|
interface JQuery {
|
|
rowGrid(options?: JQueryRowGridJSOptions): JQuery;
|
|
rowGrid(appended: string): JQuery;
|
|
}
|