aboutsummaryrefslogtreecommitdiff
path: root/dhall/types/Author.dhall
blob: dc0b1c3fa426873989816278f4a9f8f27517d47e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ Type =
    { name : Text
    , handle : Text
    , picUrl : Optional Text
    , link : Optional Text
    , twitter : Optional Text
    , default : Bool
    , inSystem : Bool
    }
, default =
  { name = ""
  , handle = ""
  , picUrl = None Text
  , link = None Text
  , twitter = None Text
  , default = False
  , inSystem = False
  }
}