---@meta
---@class cc.ActionTween :cc.ActionInterval
local ActionTween={ }
cc.ActionTween=ActionTween
---* brief Initializes the action with the property name (key), and the from and to parameters.
---* param duration The duration of the ActionTween. It's a value in seconds.
---* param key The key of property which should be updated.
---* param from The value of the specified property when the action begin.
---* param to The value of the specified property when the action end.
---* return If the initialization success, return true; otherwise, return false.
---@param duration float
---@param key string
---@param from float
---@param to float
---@return boolean
function ActionTween:initWithDuration (duration,key,from,to) end
---* brief Create and initializes the action with the property name (key), and the from and to parameters.
---* param duration The duration of the ActionTween. It's a value in seconds.
---* param key The key of property which should be updated.
---* param from The value of the specified property when the action begin.
---* param to The value of the specified property when the action end.
---* return If the creation success, return a pointer of ActionTween; otherwise, return nil.
---@param duration float
---@param key string
---@param from float
---@param to float
---@return self
function ActionTween:create (duration,key,from,to) end
---*
---@param target cc.Node
---@return self
function ActionTween:startWithTarget (target) end
---*
---@return self
function ActionTween:clone () end
---*
---@param dt float
---@return self
function ActionTween:update (dt) end
---*
---@return self
function ActionTween:reverse () end