declare namespace fx { /** * This util provides a resize animation. * Resize a node to a new top/left/width/height position * * description: * Returns an animation that will resize "node" * defined in args Object from its current position to * the position defined by (args.left, args.top, args.width, args.height). * * args: Object * A hash-map of standard `dojo.Animation` constructor properties * (such as easing: node: duration: and so on). Special args members * are 'top' and 'left' and 'width' and 'height', which indicate the new position to slide to. * * @example * ct.util.fx.resizeTo({ node: node, left:40, top:50, width:100, height:100, units:"px" }).play() */ function resizeTo(args: any): any; } export { fx as default };