mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
15 lines
463 B
TypeScript
15 lines
463 B
TypeScript
// Type definitions for Bootstrap Table v1.11.0
|
|
// Project: http://bootstrap-table.wenzhixin.net.cn/
|
|
// Definitions by: Talat Baig <https://github.com/talatbaig>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.3
|
|
|
|
/// <reference types="jquery" />
|
|
|
|
interface JQuery {
|
|
bootstrapTable(options?: any): JQuery;
|
|
bootstrapTable(method: string, parameter?: any): JQuery;
|
|
}
|
|
|
|
declare var bootstrapTable: JQueryStatic;
|