Packages

Use Elixir as a scripting language with Hex packages, anywhere on your system. No Mix project required!

Retired package: Renamed - renamed to Teex: https://hex.pm/packages/teex

Current section

Files

Jump to
tex lib types workspace.ex
Raw

lib/types/workspace.ex

defmodule Tex.Types.Workspace do
@moduledoc false
use TypedStruct
use Tex.Util.StructBuilder
alias Tex.Types.Library
typedstruct do
field :name, String.t(), enforce: true, default: ""
field :path, String.t(), enforce: true, default: ""
field :installed_libraries, list(Library.t()), enforce: true, default: []
end
builder()
end