Create bootstrap-table.d.ts (#11812)

* Create bootstrap-table.d.ts

* Update bootstrap-table.d.ts

* Update bootstrap-table.d.ts

* Update bootstrap-table.d.ts
This commit is contained in:
Talat Baig
2016-10-07 21:00:20 +01:00
committed by Mohamed Hegazy
parent 69bf8ef4e5
commit 4c76db9b47

12
bootstrap-table/bootstrap-table.d.ts vendored Normal file
View File

@@ -0,0 +1,12 @@
// 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
/// <reference path="../jquery/jquery.d.ts" />
interface JQuery {
bootstrapTable(options?: any): JQuery;
}
declare var bootstrapTable: JQueryStatic;