Skip to content

Commit

Permalink
jquery.autosize definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
kingdango committed Jun 18, 2013
1 parent cb1facc commit 3451f3b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions jquery.autosize/jquery.autosize.d.ts
@@ -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;
}

0 comments on commit 3451f3b

Please sign in to comment.