jquery.d.ts 280 B

1234567891011121314151617
  1. interface JQueryPlot {
  2. (element: HTMLElement | JQuery, data: any, options: any): void;
  3. plugins: any[];
  4. }
  5. interface JQueryStatic {
  6. plot: JQueryPlot;
  7. }
  8. interface JQuery {
  9. place_tt: any;
  10. modal: any;
  11. tagsinput: any;
  12. typeahead: any;
  13. accessKey: any;
  14. tooltip: any;
  15. }