mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
jquery.autosize definitions
This commit is contained in:
Vendored
+21
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user