Add functions stubs

This commit is contained in:
Insality
2020-02-22 14:44:01 +03:00
parent aac80795b9
commit b198e09560
5 changed files with 78 additions and 20 deletions

15
druid/base/input.lua Normal file
View File

@@ -0,0 +1,15 @@
--- Druid input text component
-- @local unimplemented
-- @module druid.input
local component = require("druid.component")
local M = component.create("input")
function M.init(self, node, callback, click_node)
self.style = self:get_style()
end
return M