defmodule Scenic.Driver.Renderling.Window.Config do defstruct [:title, :resizeable, :width, :height, :server_path] @type t :: %__MODULE__{ title: String.t(), resizeable: boolean, width: non_neg_integer(), height: non_neg_integer(), server_path: String.t() } end