defmodule ElementTui.Experimental.Parser do # Dummy module that can be used to experiment with the API # Fallback def calculate_dim(element, width, height) do ElementTui.Parser.calculate_dim(element, width, height) end # Fallback def parse(element, x, y, width, height) do ElementTui.Parser.parse(element, x, y, width, height) end end