mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-01-26 00:18:26 +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
|
|
}
|