about summary refs log tree commit diff
path: root/pkgs/profpatsch/dhallsh/Fish/Complete/type.dhall
blob: c208f67ab9ad095eae9bc1323481e92ba050b265 (plain) (blame)
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
let Command = ../../Command/type.dhall

let Argument = ../../Argument/type.dhall

in  { cmd :
        Text
    , description :
        Text
    , condition :
        Optional (Command Argument)
    , short-option :
        Optional Text
    , long-option :
        Optional Text
    , long-option-old-style :
        Optional Text
    , argument :
        Optional Text
    , keep-order :
        Bool
    , no-files :
        Bool
    , require-parameter :
        Bool
    , wraps :
        Optional Text
    }