mirror of
https://github.com/TheAnachronism/docspell.git
synced 2024-11-13 02:31:10 +00:00
60b8dc2134
- previous/next item with `.,` - confirm with `c` - unconfirm with `u`
8 lines
120 B
Elm
8 lines
120 B
Elm
module Data.ItemNav exposing (ItemNav)
|
|
|
|
|
|
type alias ItemNav =
|
|
{ prev : Maybe String
|
|
, next : Maybe String
|
|
}
|