mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
Merge branch 'master' of https://github.com/kingdango/DefinitelyTyped into kingdango-master
This commit is contained in:
commit
be0419bab1
@ -85,6 +85,7 @@ List of Definitions
|
||||
* [jQuery](http://jquery.com/) (from TypeScript samples)
|
||||
* [jQuery Mobile](http://jquerymobile.com) (by [Boris Yankov](https://github.com/borisyankov))
|
||||
* [jQuery UI](http://jqueryui.com/) (by [Boris Yankov](https://github.com/borisyankov))
|
||||
* [jQuery.autosize](http://www.jacklmoore.com/autosize/) (by [Jack Moore](http://www.jacklmoore.com/))
|
||||
* [jQuery.BBQ](http://benalman.com/projects/jquery-bbq-plugin/) (by [Adam R. Smith](https://github.com/sunetos))
|
||||
* [jQuery.contextMenu](http://medialize.github.com/jQuery-contextMenu/) (by [Natan Vivo](https://github.com/nvivo/))
|
||||
* [jQuery.clientSideLogging](https://github.com/remybach/jQuery.clientSideLogging/) (by [Diullei Gomes](https://github.com/diullei/))
|
||||
|
||||
21
jquery.autosize/jquery.autosize.d.ts
vendored
Normal file
21
jquery.autosize/jquery.autosize.d.ts
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
// Type definitions for jquery.autosize (un-versioned)
|
||||
// Project: http://www.jacklmoore.com/autosize/
|
||||
// Definitions by: Aaron T. King <https://github.com/kingdango>
|
||||
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
||||
|
||||
/// <reference path="../jquery/jquery.d.ts" />
|
||||
|
||||
interface AutosizeOptions {
|
||||
className?: string;
|
||||
append?: string;
|
||||
callback?: Function;
|
||||
}
|
||||
|
||||
interface Autosize {
|
||||
(): JQuery;
|
||||
(options: AutosizeOptions): JQuery;
|
||||
}
|
||||
|
||||
interface JQuery {
|
||||
autosize: Autosize;
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user