blob: a11db5c418f7ec3a0939c931f958fcf0d0c8f82a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
module Struct.Model exposing
(
Type
)
-- Elm -------------------------------------------------------------------------
-- Tonkadur --------------------------------------------------------------------
import Tonkadur.Types
-- Local Module ----------------------------------------------------------------
import Struct.UI
--------------------------------------------------------------------------------
-- TYPES -----------------------------------------------------------------------
--------------------------------------------------------------------------------
type alias Type =
{
tonkadur : Tonkadur.Types.State,
ui : Struct.UI.Type
}
--------------------------------------------------------------------------------
-- LOCAL -----------------------------------------------------------------------
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
-- EXPORTED --------------------------------------------------------------------
--------------------------------------------------------------------------------
|