UNPKG
todo-txt-cli
Version:
latest (0.4.3)
0.4.3
0.4.2
0.4.0
0.3.0
0.2.0
0.1.1
0.0.0
A CLI for todo.txt files - http://todotxt.org/
gitlab.com/commenthol/todo-txt-cli
todo-txt-cli
/
src
/
adapter.js
12 lines
(10 loc)
•
274 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/** *
@typedef
{import('#tasks.js').Tasks} Tasks */
/** *
@typedef
{object} Adapter *
@property
{() => Promise<Tasks|undefined>} load *
@property
{(tasks: Tasks) => Promise<void>} store *
@property
{(tasks: Tasks) => Promise<void>} archive */
export
const
__
=
null