// Type definitions for jquery.autosize 3.0.7 // Project: http://www.jacklmoore.com/autosize/ // Definitions by: Aaron T. King // Definitions: https://github.com/borisyankov/DefinitelyTyped /// declare module autosize { interface AutosizeStatic { (el: Element): void; (el: NodeList): void; (el: JQuery): void; } } declare var autosize: autosize.AutosizeStatic; declare module 'autosize' { export = autosize; }