DefinitelyTyped/types/jquery.rowgrid/index.d.ts
Leonard Thieu 1c3565933c :(
2017-06-13 13:00:42 -04:00

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;
}