Add support for svgjs.resize

This commit is contained in:
Kevin Gutiérrez
2016-05-25 13:01:45 -05:00
parent b9989e602b
commit efd8d92325

15
svgjs.resize/svgjs.resize.d.ts vendored Normal file
View File

@@ -0,0 +1,15 @@
// Type definitions for svgjs.resize
// Project: http://www.svgjs.com/
// Definitions by: Kevin Gutiérrez <https://github.com/jkevingutierrez>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// Reference: https://github.com/Fuzzyma/svg.resize.js
declare namespace svgjs {
export interface Element {
selectize(): Element
selectize(obj: Object): Element
resize(): Element
resize(obj: Object): Element
}
}