15 lines
278 B
Elm
Raw Normal View History

2020-12-01 15:43:06 +03:00
module ModulePage.Model exposing (..)
2020-11-30 16:33:24 +03:00
2020-12-01 15:43:06 +03:00
import Modules.Model exposing (Module)
2020-11-30 16:33:24 +03:00
2020-12-01 15:43:06 +03:00
type alias ModuleViewInfo =
2020-11-30 16:33:24 +03:00
{ name : String
, id : String
, author : String
, authorPeerId : String
, description : String
, website : String
2020-12-01 15:43:06 +03:00
, moduleInfo : Module
2020-11-30 16:33:24 +03:00
}