mirror of
https://github.com/fluencelabs/dashboard
synced 2025-04-24 15:22:14 +00:00
15 lines
278 B
Elm
15 lines
278 B
Elm
module ModulePage.Model exposing (..)
|
|
|
|
import Modules.Model exposing (Module)
|
|
|
|
|
|
type alias ModuleViewInfo =
|
|
{ name : String
|
|
, id : String
|
|
, author : String
|
|
, authorPeerId : String
|
|
, description : String
|
|
, website : String
|
|
, moduleInfo : Module
|
|
}
|